using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Practice1 {
internal class Program {
static void Main(string[] args) {
Console.WriteLine("int형 최대값 : " + int.MaxValue);
Console.WriteLine("int형 최소값 : " + int.MinValue);
Console.WriteLine("int형 최대값 : " + long.MaxValue);
Console.WriteLine("long형 최소값 : " + long.MinValue);
}
}
}
'C# > C# 연습' 카테고리의 다른 글
입력 (0) | 2022.11.27 |
---|---|
Variable : 변수 (0) | 2022.11.27 |
기초 연습 01 (0) | 2022.11.25 |
C# 연산자 : Bool, 논리 연산자 (0) | 2022.11.14 |
C# 연산자 : 문자열 (0) | 2022.11.14 |