[문제]

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

 

7891번: Can you add this?

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).

www.acmicpc.net

 

+ Recent posts