Toggle navigation
Toggle navigation
This project
Loading...
Sign in
송민석
/
HW_2
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 14:31:48 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
60632f424cc353571dc57486168afb1954caef9e
60632f42
0 parents
Added echo.cpp
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
60632f4
1
+
#include <iostream>
2
+
#include <string>
3
+
using
namespace
std
;
4
+
5
+
int
main
(){
6
+
string
str
;
7
+
cout
<<
"Implements echo program
\n
Input >> "
;
8
+
cin
>>
str
;
9
+
cout
<<
"Output >> "
<<
str
<<
endl
;
10
+
11
+
return
0
;
12
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment