小石的图形
Posted 123-d
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小石的图形相关的知识,希望对你有一定的参考价值。
思路:
运用初中知识
题解:
#include <iostream>
#include <stdio.h>
#include <math.h>
using namespace std;
double PI = acos(-1.0);
int main()
int a;
while (cin >> a)
double s;
s = a * a / (2 * PI) ;
printf ("%.3lf\\n", s);
return 0;
总结:
注意 π = acos(-1.0)
以上是关于小石的图形的主要内容,如果未能解决你的问题,请参考以下文章