Uri solution 1011 Sphere

#include<stdio.h>
#include<math.h>
int main()
{
    double R,pi=3.14159,v;
    scanf("%lf",&R);
    v=(4.0/3)*pi*pow(R,3);
    printf("VOLUME = %.3lf\n",v);
    return 0;
}

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes