Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박민정
/
assignment2
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
박민정
2021-04-01 20:20:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
05df65c2e85b4ee0d87347ed7e80620ad5cad61d
05df65c2
1 parent
4fe73732
add exit.cpp
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
exit.cpp
exit.cpp
0 → 100644
View file @
05df65c
1
+
//
2
+
// Created by mindyeoi on 2021/04/01.
3
+
//
4
+
5
+
#include <iostream>
6
+
#include <string>
7
+
using
namespace
std
;
8
+
9
+
10
+
int
main
()
11
+
{
12
+
while
(
1
)
13
+
{
14
+
15
+
string
dasol
;
16
+
cin
>>
dasol
;
17
+
if
(
dasol
==
"exit"
)
18
+
break
;
19
+
}
20
+
return
0
;
21
+
}
Please
register
or
login
to post a comment