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
blue
2021-09-28 21:03:26 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4ece10d1af9e8871d68fd14a4e89c0a7ee162a8b
4ece10d1
1 parent
f225636d
Editing exit function
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
echo.cpp
echo.cpp
View file @
4ece10d
...
...
@@ -2,8 +2,13 @@
using
namespace
std
;
int
main
(){
string
word
;
cout
<<
"Hello, world!"
;
cout
<<
"Hello, world!"
<<
endl
;
cout
<<
"type the exit"
<<
endl
;
cin
>>
word
;
return
0
;
if
(
word
==
"exit"
)
cout
<<
"Á¾·áµÇ¾ú½À´Ï´Ù."
<<
endl
;
return
0
;
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment