1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
#include <iostream>
#include <math.h>
using namespace std;
//Prototypes
//Retrieves the operator, operand and returns operator
//and operand
void scan_data(char, float);
//Reads operator and operand and uses switch statement
//to perform correct operator on the operand
double do_nex_op(char, float, float&);
//Reads result and outputs the result of the operator
//and the operand
float do_next_op(float);
int main()
{
char op;
float num2;
float sum;
cout<< "This program is a very basic calculator \n";
cout<< "use only operators +,-,*,/, or ^";
cout<<" to raise a number to a power\n\n";
//display operator and operand
scan_data(op, num2);
return 0;
}
// function to obtain original values
void scan_data(char op, float num2)
{
float num;
float result;
num = do_nex_op ( op, num2, num);
result = do_next_op(num);
}
// performs operation based on operator input
double do_nex_op(char op, float num2, float& num)
{
num = 0;
cout<< "Enter a valid operator:\n";
cin >> op;
cout<< "Enter any number:\n";
cin >> num2;
switch (op)
{
case'+':
cout << "\n+"<< num;
num = num + num2;
cout<<"\n\n result so far " << num;
break;
case '-':
cout << "\n-"<< num2;
num = num - num2;
cout <<"\n\n result so far " << num;
break;
case '*':
cout << "\n*"<< num2;
num = num * num2;
cout <<"\n\n result so far "<< num;
break;
case '/':
cout << "\n/"<< num2;
num = num / num2;
cout <<"\n\n result so far "<< num;
break;
case '^':
cout << "\n^"<< num2;
num = pow(num, num2);
cout <<"\n\n result so far "<< num;
break;
case 'q':
cout <<"\n q" <<" 0";
cout << "\n\n final result is"<< num;
default:
cout<<"\n\n Invalid operator";
}
return (num);
}
// suppose to initiate my loop but not working!!!
float do_next_op(float num)
{
float num2;
char op;
while(!(num2/0))
cout<<"Enter Next Operation:\n";
cin>> op;
cout<<"Enter next number: \n";
cin>> num2;
switch(op)
{
case'+':
cout<<"\n +"<< num2;
num= num2 + num;
cout<< "result so far is "<< num;
break;
case'-':
cout<<"\n -"<< num2;
num= num2 - num;
cout<<"result so far is "<< num;
break;
case'*':
cout<<"\n *"<< num2;
num= num2 * num;
cout<<"result so far is "<< num;
break;
case'/':
cout<<"\n /"<< num2;
num= num2 *num;
cout <<"result so far is "<< num;
break;
case'^':
cout<<"\n ^"<< num2;
num= pow(num2, num);
break;
case 'q':
cout<<"\n q"<<"0";
cout<<"Final result is: \n";
cout<< num;
default:
cout<<"Not a valid operator";
}
}
|