fork download
  1. from sys import stdin
  2. print("The Python 3.9 Volume Of A Cylinder Program.")
  3. p = 3.14
  4. radi = 12
  5. height = 12
  6. volume = (radi**2) * (p) * (height)
  7. print(p, " ", radi, " ", height)
  8. volume_x = round(volume)
  9. print("The Volume Of A Cylinder Is: ", volume_x)
Success #stdin #stdout 0.03s 9604KB
stdin
1
2
10
42
11
stdout
The Python 3.9 Volume Of A Cylinder Program.
3.14   12   12
The Volume Of A Cylinder Is:  5426