diff --git a/basiccalc.cpp b/basiccalc.cpp new file mode 100644 index 0000000..dc0981e --- /dev/null +++ b/basiccalc.cpp @@ -0,0 +1,49 @@ +#include +using namespace std; +int main(){ + char op; + int number1,number2; + cout<<" enter the first number: "<>number1; + cout<<" enter the oprator "<>op; + cout<<" enter the second number: "<>number2; + cout<<"result: "<