Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김윤지
/
Ex04As2
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
김윤지
2019-03-29 11:32:47 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
95eff321c843a000ca51f42bdcac6967f820571c
95eff321
1 parent
781e266d
new branch here
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
Echo/Echo/source.cpp
Echo/Echo/source.cpp
0 → 100644
View file @
95eff32
#include <iostream>
#include <string>
using
namespace
std
;
int
main
()
{
string
myWord
=
""
;
string
endCode
=
""
;
cin
>>
myWord
;
cout
<<
myWord
;
cout
<<
"If you enter 'exit', the program will exit"
;
cin
<<
endCode
;
if
(
endCode
==
"exit"
)
return
0
;
}
\ No newline at end of file
Please
register
or
login
to post a comment