From df851af18432afff0c39154b41bd352f5aac4630 Mon Sep 17 00:00:00 2001 From: VictoriaSousa <48736385+VictoriaSousa@users.noreply.github.com> Date: Mon, 7 Oct 2019 08:23:39 -0300 Subject: [PATCH] 1011 --- 1011-URI-ACCEPTED.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 1011-URI-ACCEPTED.py diff --git a/1011-URI-ACCEPTED.py b/1011-URI-ACCEPTED.py new file mode 100644 index 0000000..ac1e69a --- /dev/null +++ b/1011-URI-ACCEPTED.py @@ -0,0 +1,4 @@ +PI = 3.14159 +raio = float(input()) + +print("VOLUME = {:.3f}".format((4.0/3) * PI * (raio ** 3)))