박인호

exit

Showing 1 changed file with 19 additions and 0 deletions
#include <iostream>
#include <string>
using namespace std;
int main() {
string input;
cout << "ÀÔ·ÂÇϼ¼¿ä:";
cin >> input;
if (input == "exit") {
exit(100);
}
cout << input;
return 0;
}
\ No newline at end of file