EchoProgram.cpp
401 Bytes
// 이 파일에는 'main' 함수가 포함됩니다. 거기서 프로그램 실행이 시작되고 종료됩니다.
#include<iostream>
using namespace std;
void EchoProgram()
{
string words;
cout << "Enter what you want to say : ";
cin >> words;
cout << "\n\"" << words << "\"\n\n";
return;
}
int main()
{
while (1)
{
EchoProgram();
}
return 0;
}