Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7249 | jiabokai | 与圆相关的计算 | C++ | 编译错误 | 0 MS | 0 KB | 220 | 2023-02-02 17:02:52 |
#include<cstdio> using namespace std; const double PI=3.14159 int main() { double r,d,c,s; scanf("%lf",&r); d=r*2; c=2*PI*r; s=PI*r*r; printf(".4lf %.4lf &.4lf",d,c,s); return 0; }