Toggle navigation
Toggle navigation
This project
Loading...
Sign in
진재영
/
opensourcesw_jj
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
진재영
2022-04-01 02:31:39 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fd926b1ae14ddacad88e3876af142bdb9d51301c
fd926b1a
1 parent
76b246bb
exit program added
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
main2.cpp
main2.cpp
0 → 100644
View file @
fd926b1
1
+
#include <iostream>
2
+
#include <string>
3
+
using
namespace
std
;
4
+
5
+
int
main
(
void
){
6
+
string
input
;
7
+
8
+
cin
>>
input
;
9
+
10
+
if
(
input
==
"exit"
)
{
11
+
return
0
;
12
+
}
13
+
}
Please
register
or
login
to post a comment