teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1073)

2019-06-20
teddy8

문제

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;
}


Comments

Content