seungmi

“If you enter ‘exit’, the program will exit”

g
Showing 1 changed file with 12 additions and 0 deletions
#include <iostream>
#include <string>
using namespace std;
int main() {
string a;
cout << "If you enter 'exit', the program will exit" << endl;
cin >> a;
if (a == "exit")
exit(0);
return 0;
}
\ No newline at end of file