김대욱

exit function

#include <iostream>
#include <string>
bool exit(string a) {
if (a == "exit")
return 1;
else return 0;
}
using namespace std;
int main() {
......@@ -8,6 +14,9 @@ int main() {
string a;
cout << "출력하고 싶은 것을 입력하시오 : ";
cin >> a;
if (exit(a)) {
break;
}
cout << endl <<"입력한 글자는 : "<< a << endl;
}
}
\ No newline at end of file
......