• This project
    • Loading...
  • Sign in

전세계 / Assignment2

%ea%b7%b8%eb%a6%bc1
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
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Assignment2
  • echo.cpp
  • 전세계's avatar
    add exit function · 7410312f
    7410312f
    전세계 authored 2020-04-03 12:55:51 +0900
echo.cpp 158 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
#include<stdio.h>
#include<string>

int main()
{
	cout << "EchoProgram" << endl;
	string input;
	cin >> input;
	if (input == "Exit")
		exit(100);
	return 0;
}