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