Toggle navigation
Toggle navigation
This project
Loading...
Sign in
송재혁
/
gitbranch_assginment2
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
송재혁
2020-09-25 13:57:50 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0e6af80b8a3b1a124d4e68aca679fb91e9697e2b
0e6af80b
0 parents
echo program
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
0e6af80
#include <iostream>
#include <string>
using
namespace
std
;
int
main
()
{
string
input
;
getline
(
cin
,
input
);
cout
<<
"Input : "
<<
input
<<
endl
;
return
0
;
}
\ No newline at end of file
Please
register
or
login
to post a comment