전세계

add exit function

Showing 1 changed file with 5 additions and 0 deletions
#include<stdio.h>
#include<string>
int main()
{
cout << "EchoProgram" << endl;
string input;
cin >> input;
if (input == "Exit")
exit(100);
return 0;
}
\ No newline at end of file
......