Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이준용
/
GIT-Branch-assignment2
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
이준용
2020-04-03 19:56:34 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
07711d8a6d366df0206788ab82a6bfb7133e1abe
07711d8a
1 parent
2d71e9b6
Exit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
ExitProgram.cpp
ExitProgram.cpp
0 → 100644
View file @
07711d8
1
+
#include <iostream>
2
+
#include <string>
3
+
using
namespace
std
;
4
+
5
+
int
main
()
6
+
{
7
+
string
a
;
8
+
9
+
cin
>>
a
;
10
+
if
(
a
==
'
exit
'
)
11
+
{
12
+
return
0
;
13
+
}
14
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment