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
Show 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
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int
main
()
{
char
c1
;
printf
(
"종료하려면 q를 누르시오
\n
"
);
do
{
scanf
(
"%c"
,
&
c1
);
}
while
(
c1
!=
'q'
);
printf
(
"종료
\n
"
);
return
0
;
}
\ No newline at end of file
Please
register
or
login
to post a comment