Write a C program to perform addition, subtraction, division, and
multiplication of two numbers. (Numbers are 21 and 10)
Answers
Answered by
0
Answer:
See I can Give .Py program
You can enter the digits and operations you want
Explanation:
a=input('Enter First Number')
b=input('Enter Second Number')
c=input('Enter Operation')
If c=='+':
Print(a+b)
If c=='-'
Print(a-b)
If c=='×'
Print(a*b)
If c=='÷'
Print(a/b)
Similar questions