From 309d6e7afbe094c0a59bd269aeb82501996a26f2 Mon Sep 17 00:00:00 2001 From: DavidDGTNT <29644042+dugo3number2@users.noreply.github.com> Date: Fri, 5 Feb 2021 21:05:09 -0600 Subject: [PATCH] Update terminal.cpp --- terminal.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/terminal.cpp b/terminal.cpp index bb7ae51..7bb09e4 100644 --- a/terminal.cpp +++ b/terminal.cpp @@ -30,7 +30,6 @@ int main() cin >> num2; cout << endl; cout << num1 << " + " << num2 << " = " << num1+num2 << endl; - cout << "Press any key to exit"; } if(oper == 2) { cout << "What is your minuend? "; @@ -40,7 +39,6 @@ int main() cin >> num2; cout << endl; cout << num1 << " - " << num2 << " = " << num1-num2 << endl; - cout << "Press any key to exit"; } if(oper == 3) { cout << "What is your first number? "; @@ -50,7 +48,6 @@ int main() cin >> num2; cout << endl; cout << num1 << " x " << num2 << " = " << num1*num2 << endl; - cout << "Press any key to exit"; } if(oper == 4) { cout << "What is your dividend? "; @@ -60,7 +57,6 @@ int main() cin >> num2; cout << endl; cout << num1 << " / " << num2 << " = " << num1/num2 << endl; - cout << "Press any key to exit"; } return 0; }