Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박인호
/
gitbranch-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
박인호
2020-09-25 13:03:44 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
df5f6dde693005ab9a5280437f417635d8ba720f
df5f6dde
0 parents
echo
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
df5f6dd
1
+
#include <iostream>
2
+
#include <string>
3
+
4
+
using
namespace
std
;
5
+
6
+
int
main
()
{
7
+
string
input
;
8
+
cout
<<
"ÀÔ·ÂÇϼ¼¿ä:"
;
9
+
10
+
11
+
cin
>>
input
;
12
+
13
+
cout
<<
input
;
14
+
15
+
return
0
;
16
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment