Uri solution 1002 Area of a Circle

#include<stdio.h>
int main()
{
    double r,A,pi=3.14159;
    scanf("%lf",&r);
    A=pi*r*r;
    printf("A=%.4lf\n",A);
    return 0;
}

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes