Toggle navigation
Toggle navigation
This project
Loading...
Sign in
원영섭
/
gitBranchExperimentAssignment
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 19:22:33 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5b2402e42c572711c73189c45353418890fef3dc
5b2402e4
0 parents
echo.cpp added
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
5b2402e
1
+
#include <iostream>
2
+
#include <string>
3
+
int
main
()
{
4
+
std
::
string
a
;
5
+
std
::
cout
<<
"Enter any word you want to echo: "
;
6
+
std
::
cin
>>
a
;
7
+
std
::
cout
<<
"
\n
"
<<
a
<<
"
\n
"
;
8
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment