#include<iostream> #include<stdio.h> #include<cmath> using namespace std; int main() { int r; while(cin >> r) { double PI = atan(1.0)*4; double s = PI * r * r; printf("%.7f\n", s); } }
%f默认保留6位小数,若要修改需声明其格式,PI需要多保留几位小数,以确保计算结果的正确性
Posted denghui666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了入门训练 圆的面积相关的知识,希望对你有一定的参考价值。
#include<iostream> #include<stdio.h> #include<cmath> using namespace std; int main() { int r; while(cin >> r) { double PI = atan(1.0)*4; double s = PI * r * r; printf("%.7f\n", s); } }
%f默认保留6位小数,若要修改需声明其格式,PI需要多保留几位小数,以确保计算结果的正确性
以上是关于入门训练 圆的面积的主要内容,如果未能解决你的问题,请参考以下文章