Console.WriteLine Method

Console Programming/C# Console 2019. 9. 20. 09:35

https://docs.microsoft.com/ko-kr/dotnet/api/system.console.writeline?view=netframework-4.8

 

Console.WriteLine Method (System)

뒤에 현재 줄 종결자가 오는, 지정한 데이터를 표준 출력 스트림에 씁니다.Writes the specified data, followed by the current line terminator, to the standard output stream.

docs.microsoft.com

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Syntax05
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Standard Numeric Format Specifiers");
 
        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 

 

Console.WriteLine();    //()안의 값을 출력하고 줄바꿈을 한다.

'Console Programming > C# Console' 카테고리의 다른 글

Console.Clear();  (0) 2019.09.20
Console.ReadLine();  (0) 2019.09.20
구구단 출력3  (0) 2019.09.20
구구단 출력3  (0) 2019.09.20
구구단 출력2  (0) 2019.09.20
: