From f7975b1f9aa60147b05ff8320498501568e134cc Mon Sep 17 00:00:00 2001 From: jay3315938 <44486595+jay3315938@users.noreply.github.com> Date: Fri, 26 Oct 2018 10:23:26 +0800 Subject: [PATCH] Fix the suggestion Fix the suggestion --- Other/Terminal_cpp/terminal.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Other/Terminal_cpp/terminal.cpp b/Other/Terminal_cpp/terminal.cpp index d963390..d4a4f98 100644 --- a/Other/Terminal_cpp/terminal.cpp +++ b/Other/Terminal_cpp/terminal.cpp @@ -6,7 +6,7 @@ using namespace std; int main (){ - cout<<"Welcome to use cmd through the c++ file, Enter Command!\n"; + cout<<"Welcome to use terminal through this c++ tool, Enter Command!\n"; char abc[300]; while(1){ @@ -14,7 +14,7 @@ int main (){ system(abc); memset( abc, 0, strlen(abc) ); cin.ignore(INT_MAX,'\n'); - cout<<"Next Command:\n"; + cout<<"Enter Next Command:\n"; } }