Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
34410 | tangjunze | 与圆相关的计算 | C++ | 通过 | 0 MS | 248 KB | 240 | 2023-12-21 19:20:41 |
#include<iostream> using namespace std; int main() { float r; cin>>r; float a=2*r; float b=2*3.14159*r; float c=3.14159*r*r; printf("%.4f",a); cout<<" "; printf("%.4f",b); cout<<" "; printf("%.4f",c); return 0; }