[C#] 백준 2557번 : Hello World
using System;
namespace Prgram {
class Hello {
static void Main(string[] args) {
Console.Write("Hello World!");
}
}
}
반응형
'백준 > C#' 카테고리의 다른 글
[C#] 백준 10869번 : 사칙연산 (0) | 2025.01.20 |
---|---|
[C#] 백준 1008번 : A/B (0) | 2025.01.20 |
[C#] 백준 10998번 : A×B (0) | 2025.01.20 |
[C#] 백준 1001번 : A-B (1) | 2025.01.20 |
[C#] 백준 1000번 : A+B (0) | 2025.01.20 |