From 6c83506cb44b1d20f66df404f0b6468b0e291b6b Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Tue, 25 Jun 2019 17:55:13 -0500 Subject: Do a thing: --- ee1301/wk2/lab2/calc.cpp | 56 ++++++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 28 deletions(-) (limited to 'ee1301/wk2/lab2/calc.cpp') diff --git a/ee1301/wk2/lab2/calc.cpp b/ee1301/wk2/lab2/calc.cpp index f9925b0..9cb2e03 100644 --- a/ee1301/wk2/lab2/calc.cpp +++ b/ee1301/wk2/lab2/calc.cpp @@ -1,28 +1,28 @@ -#include -using namespace std; - -int main () { - int a,b; - char op; - cout << "Enter an equation: "; - cin >> a >> op >> b; - cout << a << op << b << " = "; - - if (op=='+'){ //Addition - cout << a + b; - } - - if (op=='-'){ //Subtraction - cout << a - b; - } - - if (op=='*'){ //Multiplication - cout << a * b; - } - - if (op=='/'){ //Division - cout << a / b; - } - - cout << endl; - } +#include +using namespace std; + +int main () { + int a,b; + char op; + cout << "Enter an equation: "; + cin >> a >> op >> b; + cout << a << op << b << " = "; + + if (op=='+'){ //Addition + cout << a + b; + } + + if (op=='-'){ //Subtraction + cout << a - b; + } + + if (op=='*'){ //Multiplication + cout << a * b; + } + + if (op=='/'){ //Division + cout << a / b; + } + + cout << endl; + } -- cgit v1.2.3