write a program to obtain ab,c from user and calculate 3a^2+7b^4+6pi in python .
If any don't know don't send unwanted messages.
Answers
Answered by
0
Answer:
import math x = int(input("Enter x: ")) y = int(input("Enter y: ")) z = int(input("Enter z: ")) res = 4 * x * 4 + 3 * y *3 + 9 * z + 6 * math.pi print("Result =", res)
Output
En.ter x: 2
En ter y: 3
Ent.er z: 5
Res.ult = 208.84955592153875
Answered by
0
Explanation:
import math
x = int(input("Enter x: "))
y = int(input("Enter y: "))
z =
Similar questions