Toggle navigation
Toggle navigation
This project
Loading...
Sign in
최원석
/
Assignment_2
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
Wonseok
2021-09-25 21:38:43 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8544a4d563437165a26551fbdb8a1d1a49e4e5fe
8544a4d5
1 parent
55644488
exit_Echo
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
Echo Program.cpp
Echo Program.cpp
View file @
8544a4d
#include <iostream>
#include <cstdlib>
#include <string>
using
namespace
std
;
void
HelloWorld
()
{
string
a
;
cin
>>
a
;
if
(
a
==
"exit"
)
exit
(
0
);
else
cout
<<
"Hello World!"
<<
endl
;
}
...
...
Please
register
or
login
to post a comment