1.

Input a number in T.Calculate then print the following formulae:-G=4028+T/4+T2+8*Tplease help​

Answer»

Answer:

#Python

Explanation:

t= INT(input("ENTER a value: " ))

s = 4028 + t/4 + t *2 + t * 8

print("RESULT :" , s)



Discussion

No Comment Found