문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 0 입력될 때까지 무한 출력하기2
// input : 7 4 0 3 0 1 5 6 9 10 8
// output : 7
// 4
// 0
#include <iostream>
using namespace std;
int main()
{
int n;
do {
cin >> n;
cout << n << endl;
} while (n);
return 0;
}