[백준 10951] A+B - 4 (C#, C++) - soo:bak
작성일 :
문제 링크
설명
기본적인 사칙 연산과 반복문을 사용하는 문제입니다.
다만, 입력의 끝인 EOF
에 관한 처리를 해주어야 합니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace Solution {
class Program {
static void Main(string[] args) {
string? input;
while (true) {
input = Console.ReadLine();
if (input == null) break ;
var tokens = input.Split(' ');
var a = int.Parse(tokens[0]);
var b = int.Parse(tokens[1]);
Console.WriteLine($"{a + b}");
}
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
while (true) {
int a, b; cin >> a >> b;
if(cin.eof()) break;
cout << a + b << "\n";
}
return 0;
}