#include <iostream> // 입출력을 위한 헤더
int a;
cin >> a; // a에 값 입력
cout << a; // a 값 출력
cout << endl; // 줄바꿈
int a, b, c;
cin >> a >> b >> c; // a, b, c 순서대로 입력, 공백 기준으로 구분
cout << a + b + c << endl; // a, b, c의 합 출력
cin.eof()
함수를 이용
#include <iostream>
using namespace std;
int main() {
while (1) {
int n;
cin >> n;
if (cin.eof() == 1) break;
if (n > 0) cnt++;
}
}
#include <iostream>
using namespace std;
int main()
{
int a, b;
while (!(cin >> a >> b).eof()) {
cout << a + b << "\n";
}
return 0;
}
테스트 케이스 개수 신경 안 써도 정답 처리됨
#include <iostream>
using namespace std;
int main() {
int A, B;
while (cin >> A >> B) {
cout << A + B << "\n";
}
}