Blue Bridge Cup--the area of the entrance training circle

Source: Internet
Author: User

Entry Training Circle Area time limit: 1.0s memory limit: 256.0MBThe problem describes the radius r of a given circle, and the area of the circle. Input format input contains an integer r that represents the radius of the circle. Output format output one row, containing a real number, rounded to retain 7 digits after the decimal point, indicating the area of the circle.

Description: In the subject, the input is an integer, but the output is a real number.

For the real output of the problem, please be sure to see the real output of the requirements, such as the need to retain the decimal point 7, your program must be strictly output 7 decimal places, output too much or too little number of decimal places are not, will be considered wrong.

The problem with the real output if not specifically stated, rounding is done by rounding.

Sample input 4 Sample output 50.2654825 data size and convention 1 <= R <= 10000. Please note that the value of π should be more accurate if the accuracy requirement is higher. You can use constants to denote π, such as pi=3.14159265358979323, or you can use mathematical formulas to find π, such as Pi=atan (1.0).
#include <iostream>#include<cstdio>#define pi 3.14159265358979323using  namespace  std; int Main () {  int  R;  scanf ("%d",&R);  printf ("%.7lf\n", pi*r*R);}

Blue Bridge Cup--the area of the entrance training circle

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.