Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김건희
/
merge
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
김건희
2022-03-31 23:24:01 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
46cd19596ad75ae8a2b5b27bb111574f0a67e2b6
46cd1959
0 parents
added echo.cpp
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
46cd195
#include <iostream>
#include <string>
#include <vector>
using
namespace
std
;
int
main
()
{
ios_base
::
sync_with_stdio
(
false
);
cin
.
tie
(
NULL
);
// º¯¼ö ¼±¾ð
string
str
;
// echo ¼öÇà
cout
<<
"input : "
;
cin
>>
str
;
cout
<<
str
;
return
0
;
}
\ No newline at end of file
Please
register
or
login
to post a comment