• This project
    • Loading...
  • Sign in

전현진 / 21.03.26_HW

%ea%b7%b8%eb%a6%bc1
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
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • 21.03.26_HW
  • EchoProgram
  • main.cpp
  • 전현진's avatar
    add exit function · b4876c36
    b4876c36
    전현진 authored 2021-03-26 21:53:34 +0900
main.cpp 215 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

#include "EchoString.h"

using namespace std;

int main()
{
	EchoString echo;

	while (true)
	{
		echo.InputString();
		if (echo.getEcho() == echo.getExitMessage())
			break;

		echo.PrintScreen();
	}

	return 0;
}