Toggle navigation
Toggle navigation
This project
Loading...
Sign in
오승택
/
Echo_Program
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
Seung Taek
2021-04-01 20:55:54 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d133a3b9ef8bce20fe27e1474f365fbf217b339f
d133a3b9
0 parents
A_echo
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
d133a3b
#include <iostream>
using
namespace
std
;
int
main
()
{
string
input
;
while
(
true
)
{
cin
>>
input
;
cout
<<
input
<<
endl
;
}
return
0
;
}
\ No newline at end of file
Please
register
or
login
to post a comment