Computer Science, asked by skswrd89, 3 months ago

Write a program in C++ to let the user enter 2 numbers and an arithmetic

operator (+ , -, *, /). Display the result of operation on the two numbers.​

Answers

Answered by akshatmor1111
0

Answer:

Enter any two positive integer numbers:

6

8

SUM 6 + 8 = 14

DIFFERENCE 6 - 8 = -2

PRODUCT 6 * 8 = 48

QUOTIENT 6 / 8 = 0.75

MODULUS 6 % 8 = 6

Similar questions