Toggle navigation
Toggle navigation
This project
Loading...
Sign in
유승근
/
OSS_assignment3
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
Yuseunggeun
2020-04-03 20:41:08 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9c94b7d8045c83fc90a241e2044f540ebf86ebbd
9c94b7d8
0 parents
add hello.cpp
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
hello.cpp
hello.cpp
0 → 100644
View file @
9c94b7d
1
+
#include<iostream>
2
+
#include<string>
3
+
int
main
(){
4
+
string
data
;
5
+
cout
<<
"input : "
;
6
+
cin
>>
data
;
7
+
cout
<<
"print : "
<<
data
;
8
+
9
+
10
+
return
0
;
11
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment