Toggle navigation
Toggle navigation
This project
Loading...
Sign in
전세계
/
Assignment2
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
전세계
2020-04-03 12:55:51 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7410312f76b04509b86823d45509e2cfffbbbd74
7410312f
1 parent
428d1f35
add exit function
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
echo.cpp
echo.cpp
View file @
7410312
#include<stdio.h>
#include<string>
int
main
()
{
cout
<<
"EchoProgram"
<<
endl
;
string
input
;
cin
>>
input
;
if
(
input
==
"Exit"
)
exit
(
100
);
return
0
;
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment