The calling statements that are placed in main() should replace the calculations that are currently in the switch statement.
I need to write and use the following functions:
int addition( int value1, int value2 )
int subtraction( int value1, int value2 )
int multiplication( int value1, int value2 )
int quotient( int value1, int value2 )
int remainder( int value1, int value2 )
int power( int value1, int value2 )
int factorial( int value )
int addition( int value1, int value2 ){
return value1+value2;
}
int main(){
int num1, num2, add;
cout << "enter the first number" << '\n';
cin >> num1;
cout << "enter the second number" << '\n';
cin >> num2;
add = addition(num1, num2);
cout << "The sum of " << num1 << " and " << num2 << " is " << add<< '\n';
return 0;
}
case '+':
//read input first
cout << "Enter the first number to add: " << endl;
cin >> num1;
cout << "Enter the second number to add: " << endl;
cin >> num2;
//compute the results
result=num1+num2;
cout << endl << num1 << " + " << num2 << " = " << result;
break;
or do I still need the case '+': and that follows under?
I believe he got rid of your switch statement entirely and instead created an addition function (lines 1-4, notice it is outside of main) which accepts two integer values which will be added together and returned.
So you have to follow lines 1-4 but change it into multiplication, division and etc. and similarly call them in main
I still need to switch statement in it. My professor's directions are: Part 2 of the assignment, code functions that will perform the various arithmetic operations and then call the functions in main(). The calling statements that are placed in main() should replace the calculations that are currently in the switch statement.
She doesn't answer questions and just tells us to figure it out, that's why I am here. Did I misunderstand the directions? Is there a way to make that into a switch with what he did?
1. define all the functions before main as arbwok did with addition()
2. in main set up a switch : case 1 : addition(), case 2: subtraction(), ...
as side-notes:
(a) you may wish to const qualify the functions' argument(s)
(b) note signatures of all functions except factorial() are same, so without the factorial() function you might also have been able to use function pointers within the switch