Toggle navigation
Toggle navigation
This project
Loading...
Sign in
강민구
/
kang_2020_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
강민구
2020-09-25 23:08:52 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4dc64c3aa3487608c0fef6a781f1e9dc99481a24
4dc64c3a
0 parents
branch exit
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
1
echo.cpp
1
0 → 100644
View file @
4dc64c3
File mode changed
echo.cpp
0 → 100644
View file @
4dc64c3
1
+
#define _CRT_SECURE_NO_WARNINGS
2
+
#include <stdio.h>
3
+
4
+
int
main
()
5
+
{
6
+
char
c1
;
7
+
printf
(
"종료하려면 q를 누르시오
\n
"
);
8
+
do
9
+
{
10
+
scanf
(
"%c"
,
&
c1
);
11
+
}
while
(
c1
!=
'q'
);
12
+
printf
(
"종료
\n
"
);
13
+
return
0
;
14
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment