Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
43966 | niyuchen | 与圆相关的计算 | C++ | 通过 | 0 MS | 252 KB | 244 | 2024-03-24 12:55:47 |
#include<bits/stdc++.h> using namespace std; int main() { double r,d,c,s; cin>>r; d=2*r; c=2*3.14159*r; s=3.14159*r*r; printf("%.4lf ",d); printf("%.4lf ",c); printf("%.4lf",s); return 0; }