[Algorithm] BOJ 10951
입력을 중단하는 특정조건이 없는 문제였습니다. 아래와 같이 while문을 이용하여 입력을 중단시킬 수 있는 방법을 배운 문제였습니다.
#include <iostream>
using namespace std;
int main()
{
int a,b;
while(cin >> a >> b)
cout << a+b << "\n";
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int a,b;
while(cin >> a >> b)
cout << a+b << "\n";
return 0;
}
댓글남기기