안지영

commit

No preview for this file type
No preview for this file type
No preview for this file type
<?xml version="1.0" encoding="utf-8"?>
<Project>
<ProjectOutputs>C:\Users\LG gram\source\repos\oss_hw2\Debug\oss_hw2.exe</ProjectOutputs>
<ContentFiles></ContentFiles>
<SatelliteDlls></SatelliteDlls>
<NonRecipeFileRefs></NonRecipeFileRefs>
</Project>
\ No newline at end of file
 소스.cpp
oss_hw2.vcxproj -> C:\Users\LG gram\source\repos\oss_hw2\Debug\oss_hw2.exe
PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.27.29110:TargetPlatformVersion=10.0.18362.0:
Debug|Win32|C:\Users\LG gram\source\repos\oss_hw2\|
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -8,6 +8,11 @@ int main() {
string input;
cout << "enter : ";
cin >> input;
cout << input;
if (input == "exit") {
return exit(0);
}
else {
cout << input;
}
return 0;
}
\ No newline at end of file
......