Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김정은
/
opensource
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
김정은
2017-09-22 11:54:26 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
686f194c0b012c70721fffa6fad578945ef34288
686f194c
0 parents
echo program
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
A/echo_program.cpp
A/echo_program.cpp
0 → 100644
View file @
686f194
1
+
//echo program
2
+
3
+
#include<iostream>
4
+
using
namespace
std
;
5
+
6
+
7
+
int
main
(){
8
+
9
+
int
a
;
10
+
cout
<<
"입력하세요 쓰고싶은 숫자 : "
;
11
+
cin
>>
a
;
12
+
13
+
cout
<<
"당신이 입력한 숫자는 "
<<
a
<<
" 입니다"
<<
endl
;
14
+
15
+
16
+
17
+
18
+
return
0
;
19
+
}
Please
register
or
login
to post a comment