C#프로그래밍

HelloWorld

다모아 2023. 7. 19. 14:36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HelloWorld
{
    internal class Program
    {
        static void Main(string[] args) // 생각 코딩 검증 예상 실행
        { //변하는 거 , 변하지 않는 거 , 정보 저장 -> 변수 / 대상은 -> 값 

            //변수를 선언하고 값을 할당 (변수의 초기화)
            string characterName = "홍길동";
            Console.WriteLine("이름: " + characterName);

            int level; // 변수 선언, 정의
            level = 12; // 값을 level이라는 이름의 변수에 저장 (값을 할당)
            Console.WriteLine("레벨: " + level);
        }
    }
}

 

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

영웅 피  (0) 2023.07.19
변환(캐스팅)  (0) 2023.07.19
디아블로 아이템 사전  (0) 2023.07.19
문자열 보간  (0) 2023.07.19
결합연산자  (0) 2023.07.19