Update terminal.cpp

version-1
DavidDGTNT 2021-02-05 21:05:09 -06:00 committed by GitHub
parent de9ba8b6a1
commit 309d6e7afb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -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;
}