1.cpp 210 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 #include <iostream> #include <string> using namespace std; int main() { while (1) { string a; cout << "출력하고 싶은 것을 입력하시오 : "; cin >> a; cout << endl <<"입력한 글자는 : "<< a << endl; } }