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