#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需要多保留几位小数,以确保计算结果的正确性
标签:col log gpo 保留 clu 结果 面积 mat ios
#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需要多保留几位小数,以确保计算结果的正确性
标签:col log gpo 保留 clu 结果 面积 mat ios
原文地址:https://www.cnblogs.com/denghui666/p/8391430.html