| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 29760 | 张予馨 | 与圆相关的计算 | C++ | Accepted | 0 MS | 248 KB | 241 | 2023-11-03 15:11:48 |
#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; }