Toggle navigation
Toggle navigation
This project
Loading...
Sign in
최재원
/
OSSW_Lab
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
Jewon Choi
2018-03-30 11:24:32 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d0a1ec5fdf6b13fd5ccb06650f5ea11473a947bc
d0a1ec5f
1 parent
13741a18
Add : Exit Function
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
.gitignore
Project1/Project1/main.cpp
.gitignore
View file @
d0a1ec5
/Project1/.vs/
.gitignore
/Project1/x64/
...
...
Project1/Project1/main.cpp
View file @
d0a1ec5
...
...
@@ -4,7 +4,13 @@ using namespace std;
int
main
()
{
string
a
;
cin
>>
a
;
cout
<<
endl
<<
a
;
while
(
1
)
{
string
a
;
cin
>>
a
;
cout
<<
endl
<<
a
;
if
(
a
==
"exit"
)
break
;
}
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment