Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags more
Archives
Today
Total
관리 메뉴

Formoat's Open Blog

테스트용 글 본문

카테고리 없음

테스트용 글

snd-snd 2019. 12. 20. 17:42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _01.HelloCSharp
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello C#");
            Console.WriteLine(args.Length);

            for ( int i=0; i<args.Length; i++ )
            {
                Console.WriteLine(args[i]);
            }

            string str = Console.ReadLine();
            Console.WriteLine(str);

            int x = Console.Read();
            char ch = Convert.ToChar(x);
            Console.WriteLine(ch);
            
        }
    }
}
Comments