[문제]
Given two integers, calculate and output their sum.
[입력]
The input contains several test cases. The first line contains and integer t (t ≤ 100) denoting the number of test cases. Then t tests follow, each of them consisiting of two space separated integers x and y (−109 ≤ x, y ≤ 109).
[출력]
For each test case output output the sum of the corresponding integers.
매우 간단한 사칙연산 문제이다.
단지, C++를 건드리기 시작한지 얼마 안되었기 때문에 C++로 한 번 코드를 작성해보았다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <iostream>
using namespace std;
int main()
{
int num, a, b, sum;
cin >> num; //scanf("%d", &num);
for(int i=0; i<num; i++){
cin >> a >> b; //scanf("%d %d", &a, &b);
sum = a + b;
cout << sum << endl; //printf("%d\n", sum);
}
return 0;
}
|
cs |
주석을 보면 C언어로 했을 때의 코드이다.
출처: https://www.acmicpc.net/problem/7891
'코딩 문제풀이 및 연습 > [C++]백준' 카테고리의 다른 글
[백준 4892번] 숫자 맞추기 게임 (0) | 2021.03.17 |
---|---|
[백준 11866번]요세푸스 문제 0 (0) | 2021.03.15 |
[백준 9012번] Parenthesis (in C++) (0) | 2021.03.14 |