4. Write a program (X=10,Y=2.8) 1. Addition 2. Subtraction 3. Multiplication 4. Division 0.00
Answers
Answered by
0
Answer:
I know only Python
X=10
Y=2.8
Add=X+Y
Subtract=X-Y
Multiply=X*Y
Divide=X/Y
print("The addition of X and Y is:",Add)
print("The subtraction of X and Y is:",Subtract)
print("The multiplication of X and Y is:",Multiply)
print("The division of X and Y is:",Divide)
Explanation:
Follow exactly don't do even a little error.
Similar questions