teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1071)

2019-06-20
teddy8

문제

URL : https://codeup.kr/problemsetsol.php?psid=23


소스코드

// 0 입력될 때까지 무한 출력하기 (goto문 사용)
// 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;
	
	a:
	cin >> n;
	cout << n << endl;

	if (n != 0)
		goto a;

	return 0;
}


Comments

Content