전언석

Edited Project1(exit)

 test.cpp
Project1.vcxproj -> C:\Users\User\Desktop\1\assignment2\Project1\Debug\Project1.exe
Project1.vcxproj -> C:\Users\User\Desktop\4\assignment2\Project1\Debug\Project1.exe
......
PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.26.28801:TargetPlatformVersion=10.0.18362.0:
Debug|Win32|C:\Users\User\Desktop\1\assignment2\Project1\|
Debug|Win32|C:\Users\User\Desktop\4\assignment2\Project1\|
......
......@@ -5,7 +5,10 @@ int main()
{
string a;
cin >> a;
cout << a;
if (a == "exit")
exit(100);
else
cout << a;
return 0;
}
\ No newline at end of file
......