i) write the program to: a) find the area of side. b) find the aum and difference of two numbers. (in computer).
Answers
Answered by
0
Answer:
Hey! This is in python...
1)
side = float(input("Enter side: "))
print("Area of square = ", side*side)
2)
x = int(input("Enter a number: "))
y = int(input("Enter another number: "))
print("Sum of numbers = ", x+y)
print("Difference = ", x-y)
Similar questions
Computer Science,
3 months ago
Social Sciences,
3 months ago
History,
3 months ago
Math,
7 months ago