Toggle navigation
Toggle navigation
This project
Loading...
Sign in
정대욱
/
Assignment2and3
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-10-04 20:52:49 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e066ed3c495d2f5ede2dca1df79140668eaad550
e066ed3c
0 parents
echo
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
e066ed3
#include <iostream>
int
main
()
{
char
buffer
[
256
];
std
::
cout
<<
"Hello! Please enter some text:
\n
>> "
;
while
(
std
::
cin
>>
buffer
)
{
std
::
cout
<<
buffer
<<
std
::
endl
;
std
::
cout
<<
">> "
;
}
return
0
;
}
\ No newline at end of file
Please
register
or
login
to post a comment