본문 바로가기
프로그래밍

1_1.Console.WriteLine

by BlueOcean&Shark 2019. 1. 6.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace cshapExOne3
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello c#!!");
            Console.WriteLine("mun" + " jeong" + " teak"); 
            Console.WriteLine(args[0+ " " + args[1]);
 
            Console.WriteLine(args.Length);
 
            Console.ReadLine();
        }
    }
}
cs

-----결과---------------------------------------------------
C:\Users\bomb0\source\repos\cshapExOne3\cshapExOne3\bin\Debug>cshapExOne3.exe my name
Hello c#!!
mun jeong teak
my name

2


'프로그래밍' 카테고리의 다른 글

1_3.접미어와 MaxValue/MinValue  (0) 2019.01.06
1_2.자료형과 변수선언  (0) 2019.01.06
1. mysql [show / use / select / create / drop]  (0) 2018.04.06
6_UDP 이론  (0) 2018.01.09
5_TCP이론  (0) 2018.01.09

댓글