Toggle navigation
Toggle navigation
This project
Loading...
Sign in
안지현
/
gitBranch
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
안지현
2022-03-31 22:31:51 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9ae2c5482491922d72cfe47fa55eadbf6bbdfe83
9ae2c548
0 parents
cpp edited
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
9ae2c54
1
+
#include <iostream>
2
+
using
namespace
std
;
3
+
4
+
int
main
()
{
5
+
6
+
char
a
;
7
+
cout
<<
"Enter anything"
<<
endl
;
8
+
cin
>>
a
;
9
+
cout
<<
a
;
10
+
11
+
return
0
;
12
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment