Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김다희
/
EchoProgram
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
김다희
2019-03-29 22:38:06 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e92ed331661f37ad5263c3822ec43ee28f8cc2c5
e92ed331
0 parents
program
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
소스-1.cpp
소스-1.cpp
0 → 100644
View file @
e92ed33
1
+
2
+
#include<iostream>
3
+
using
namespace
std
;
4
+
5
+
int
main
()
{
6
+
7
+
cout
<<
"숫자를 입력해주세요"
;
8
+
int
a
;
9
+
cin
>>
a
;
10
+
cout
<<
"출력 : "
<<
a
;
11
+
12
+
return
0
;
13
+
}
Please
register
or
login
to post a comment