cherry_be/test,py
2020-04-04 08:46:45 +08:00

12 lines
134 B
Plaintext

import math
a = math.pow(12.09, 2)
print(a)
b = a / 10
print(b)
c = 3330.97 - b
print(c)
d = math.sqrt(c)
print(d)
e = d / 9
print(e)