Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김건우
/
test-git
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
김건우
2021-04-01 15:36:00 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c9a784bfaa22aad6bbb82e1f6ceea9d42c4048e7
c9a784bf
0 parents
echo.cpp
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
c9a784b
1
+
#include<iostream>
2
+
using
namespace
std
;
3
+
4
+
void
echo
()
{
5
+
while
(
true
)
{
6
+
string
a
;
7
+
cin
>>
a
;
8
+
9
+
cout
<<
a
<<
endl
;
10
+
}
11
+
}
12
+
13
+
int
main
()
{
14
+
echo
();
15
+
16
+
return
0
;
17
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment