백준 10950
by atomic0x90 (Yujun Han)
BOJ - 10950 - A+B-3
설명
반복문을 사용하는 방법을 알아야 한다.
testCase를 입력받고 testCase 만큼 반복문을 실행한다.
반복문에서 숫자 2개를 입력받고 숫자 2개를 +
연산을 하여 출력한다.
code
#include <iostream>
using namespace std;
int main()
{
int testCase;
int a,b;
cin>>testCase;
for(int i = 0;i < testCase;i++)
{
cin>>a>>b;
cout<<a+b<<endl;
}
return 0;
}
감사합니다.
홈으로 가기 | 더 많은 백준 문제 풀이 보기 | post 목록 보기 |
---|---|---|