Toggle navigation
Toggle navigation
This project
Loading...
Sign in
정세호
/
mytest
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
정세호
2020-09-25 18:59:04 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b20426e95a854ecc327e930635aa6d36b9ef1ed1
b20426e9
1 parent
9a9cc13b
잘못 올려서 다시올림
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
echo_program.cpp → echo_program_new.cpp
echo_program.cpp
→
echo_program
_new
.cpp
View file @
b20426e
...
...
@@ -5,13 +5,10 @@ using namespace std;
int
main
()
{
string
s
;
while
(
true
)
{
cout
<<
"if you enter 'exit', the program will exit: "
;
cin
>>
s
;
if
(
s
==
"exit"
)
{
break
;
exit
(
100
);
}
cout
<<
s
<<
endl
;
}
}
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment