Toggle navigation
Toggle navigation
This project
Loading...
Sign in
송근영
/
OpenSource_Test
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Song
2021-04-01 11:17:01 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5b59c33ebb1b6e48f18c2781fc8df8af9b5959d8
5b59c33e
1 parent
5e5ca416
exit function add in A.cpp
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
A.cpp
A.cpp
View file @
5b59c33
...
@@ -7,6 +7,8 @@ int main()
...
@@ -7,6 +7,8 @@ int main()
7
string
input
;
7
string
input
;
8
cout
<<
"Inputs : "
;
8
cout
<<
"Inputs : "
;
9
cin
>>
input
;
9
cin
>>
input
;
10
+
if
(
input
==
"exit"
)
11
+
exit
(
0
);
10
cout
<<
input
;
12
cout
<<
input
;
11
13
12
return
0
;
14
return
0
;
...
...
Please
register
or
login
to post a comment