#include
int main()
{ int a,b=9,c=10; a=9; std::cout<<"a = "<
Answers
Answered by
0
Answer:
integers, a and b (obtained by the user) and will perform the division a/b, store the result in another integer c and show the result of the division using cout. In a similar way, extend the program to add, subtract, multiply, do modulo and power using integers a and b. Modify your program so that when it starts, it asks the user which type of calculation it should do, then asks for the 2 integers, then runs the user selected calculation and outputs the result in a user friendly formatted manner. Solution #1
Explanation:
please mark me as BRAINLIEST PLEASE
Similar questions