10 条题解
- 1
信息
- ID
- 334
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 3
- 标签
- 递交数
- 350
- 已通过
- 184
- 上传者
很简单
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
double a,b,d;
cin>>a;
b=a/3.14/2;
d=3.14*b*b;
printf("%.2f",d);
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
double n;
cin>>n;
double r=(n/3.14)/2;
double s=r*r*3.14;
cout<<fixed<<setprecision(2)<<s;
return 0;
}
过辣!
double c,r;
cin>>c;
r=1.0*c/6.28;
cout<<fixed<<setprecision(2)<<1.0*3.14*pow(r,2);//pow函数求r的2次方
不是很难 ···#include<bits/stdc++.h> using namespace std; int main() { double a; cin >> a; double t = a / 3.14 / 2; cout << fixed << setprecision(2) << t * t * 3.14; return 0; } ···
世界最短代码!
#include <bits/stdc++.h>
using namespace std;
int main(){
cout<<fixed<<setprecision(2)<<314.00;
return 0;
}