SeungwooCloud

banch exit file hworld.cpp added

#include <iostream>
#include <string>
using namespace std;
int main() {
string exit;
cout << "exit칠거임?"; cin >> exit;
if (exit == "exit")
exit(100);
cout << "Hello World!" << endl;
return 0;
}
\ No newline at end of file
......