using System;
class Program {
static void Main(string[] args) {
int total = 0;
for (int i = 0; i < 5; i++) {
string stringN = Console.ReadLine();
int intN = Convert.ToInt32(stringN);
total += intN;
}
Console.WriteLine(total);
}
}
문제 출처
https://www.acmicpc.net/problem/5522
'ComputerScience > Coding Test' 카테고리의 다른 글
C# 백준 2738번: 행렬 덧셈 (0) | 2022.11.20 |
---|---|
C# 백준 10872번: 팩토리얼 (0) | 2022.11.20 |
C# 백준 25372번: 성택이의 은밀한 비밀번호 (0) | 2022.11.19 |
C# 백준 2338번: 긴자리 계산 (2) | 2022.11.19 |
C# 백준 1271번: 엄청난 부자2 (0) | 2022.11.19 |