재밌고 어려운 IT를 이해해보자~!

변수, 데이터 형식, 상수 본문

C#

변수, 데이터 형식, 상수

언제나즐거운IT 2024. 6. 28. 20:40

C#의 자료형

 

 

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            byte a = 200;
            sbyte b = -126;
            short c = 30000;
            ushort d = 40000;
            int e = 100000000;
            uint f = 1000000000;
            long g = 1000000000000000000;
            ulong h = 10000000000000000000;

            Console.WriteLine("a={0}, b={1}, c={2}, d={3}, e={4}, f={5}, g={6}, h={7}", a, b, c, d, e, f, g, h);
        }
    }
}

 

서식 지정자(Format Specifier)

 

{인덱스[, 출력 너비][:서식 문자열]}

 

 

'C#' 카테고리의 다른 글

무한루프 제어문  (0) 2024.06.29
반복문  (0) 2024.06.28
조건문  (0) 2024.06.28
연산자(Operators)  (0) 2024.06.28
Visual Studio, C# 컴파일  (0) 2024.06.28
Comments