teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1079)

2019-06-20
teddy8

문제

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


소스코드

// 원하는 문자(q) 입력할 때까지 반복 출력하기
// input : x b k d l q g a c
// output : x 
//			b
//			k
//			d
//			l
//			q
#include <iostream>

using namespace std;

int main()
{
	char c;

	do {
		cin >> c;
		cout << c << endl;
	} while (c != 'q');

	return 0;
}


Comments

Content