Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박민정
/
assignment2
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
박민정
2021-04-01 20:07:41 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4fe737325ad10f032e19e3ce7b4cbbc1adbc08ca
4fe73732
0 parents
initial::add echo program
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
main.cpp
main.cpp
0 → 100644
View file @
4fe7373
1
+
#include <iostream>
2
+
#include <string>
3
+
using
namespace
std
;
4
+
int
main
()
{
5
+
string
str
;
6
+
cin
>>
str
;
7
+
cout
<<
str
;
8
+
9
+
return
0
;
10
+
}
Please
register
or
login
to post a comment