Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이종규
/
newTest
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
JKL
2021-09-24 14:08:31 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cfa677d243a702ffd706547450bbc8e59972d29f
cfa677d2
1 parent
174f867c
Ehco program
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
A/echo.cpp
A/echo.cpp
0 → 100644
View file @
cfa677d
#include<iostream>
#include<string>
using
namespace
std
;
int
main
()
{
string
text
;
cout
<<
"Please enter the sentence..."
<<
endl
<<
endl
;
cout
<<
": "
;
cin
>>
text
;
cout
<<
endl
<<
text
<<
endl
;
return
0
;
}
\ No newline at end of file
Please
register
or
login
to post a comment