EchoProgram.cpp
514 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// 이 파일에는 'main' 함수가 포함됩니다. 거기서 프로그램 실행이 시작되고 종료됩니다.
#include<iostream>
using namespace std;
void Exit(string words)
{
if (words == "exit")
{
exit();
}
return;
}
void EchoProgram()
{
string words;
cout << "Enter what you want to say : ";
cin >> words;
Exit(words);
cout << "\n\"" << words << "\"\n\n";
return;
}
int main()
{
while (1)
{
EchoProgram();
}
return 0;
}