8 条题解
-
1
方法1:
#include <cstdio> using namespace std; int main(){ double R,r; scanf("%lf%lf",&R,&r); printf("%.2lf\n",3.14*(R*R-r*r)); return 0; }
方法2:
#include <iostream> #include <iomanip> using namespace std; int main(){ double R,r; cin>>R>>r; cout<<fixed<<setprecision(2)<<3.14*(R*R-r*r)<<endl; return 0; }
方法3:
#include <iostream> using namespace std; int main(){ cout<<452.16<<endl; return 0; }
PS:方法三很好
- 1
信息
- ID
- 335
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 1
- 标签
- 递交数
- 290
- 已通过
- 197
- 上传者