using System; // 자동으로 포함
{
int x;
Random random = new Random(); // 객체생성
x = random.Next(0, 3); // 0, 1, 2 랜덤 생성
Console.WriteLine(x);
}
'C#' 카테고리의 다른 글
객체지향 프로그래밍의 특징 (0) | 2023.11.08 |
---|---|
배열과 컬렉션(Collection) (0) | 2023.11.07 |
do-while문 (0) | 2023.11.07 |
char 과 string 비교 (0) | 2023.11.07 |
3항 연산자 (0) | 2023.11.06 |