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
//echo program
#include<iostream>
using
namespace
std
;
int
main
(){
int
a
;
cout
<<
"입력하세요 쓰고싶은 숫자 : "
;
cin
>>
a
;
cout
<<
"당신이 입력한 숫자는 "
<<
a
<<
" 입니다"
<<
endl
;
return
0
;
}
Please
register
or
login
to post a comment