본문 바로가기
프로그램/C# 1000제

C# 예제2] C# 프로그래밍 입문 CHAPTER 1. p23 스트링

by 건티 2021. 7. 13.
728x90

참고예제]

using System;
using System.Collections.Generic;
using System.Text;

namespace Chapter1
{
    class P23_ex1_3
    {
        static void Main(string[] args)
        {
            string s="Hello";

            s += " World";

            Console.WriteLine(s + "!");
        }

    }
}

 

참고예제 결과]

 

 

 

대한민국의 아름다운 영토, 독도의 여름

 

반응형

댓글