Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Z1woo
/
git
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
Z1woo
2021-04-01 22:53:36 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
550a2984bf8e2bdc9fcae7dd6eaa42798c24a2b0
550a2984
0 parents
echo program
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
main.cpp
main.cpp
0 → 100644
View file @
550a298
1
+
#include<iostream>
2
+
#include<string>
3
+
4
+
using
namespace
std
;
5
+
6
+
7
+
int
main
(){
8
+
string
echo
;
9
+
cout
<<
"Please enter some text:
\n
"
;
10
+
cin
>>
echo
;
11
+
cout
<<
echo
;
12
+
13
+
return
0
;
14
+
}
15
+
Please
register
or
login
to post a comment