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
//
// Created by mindyeoi on 2021/04/01.
//
#include <iostream>
#include <string>
using
namespace
std
;
int
main
()
{
while
(
1
)
{
string
dasol
;
cin
>>
dasol
;
if
(
dasol
==
"exit"
)
break
;
}
return
0
;
}
Please
register
or
login
to post a comment