Toggle navigation
Toggle navigation
This project
Loading...
Sign in
원영섭
/
gitBranchExperimentAssignment
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 19:35:50 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0e2a7d9a8357612f6821e5ea901a48e9d4b4151d
0e2a7d9a
1 parent
5b2402e4
If you enter ‘exit’, the program will exit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
exit.cpp
exit.cpp
0 → 100644
View file @
0e2a7d9
#include <iostream>
#include <string>
int
main
()
{
std
::
string
b
;
do
{
std
::
cout
<<
"Enter exit to exit: "
;
std
::
cin
>>
b
;
}
while
(
b
!=
"exit"
);
}
\ No newline at end of file
Please
register
or
login
to post a comment