| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 69810 | sh25_wuyy | 与圆相关的计算 | C++ | Accepted | 1 MS | 256 KB | 243 | 2025-10-11 17:35:50 |
#include<bits/stdc++.h> using namespace std; int main(){ double a; cin>>a; cout<<fixed<<setprecision(4)<<2*a<<" "; cout<<fixed<<setprecision(4)<<2*a*3.14159<<" "; cout<<fixed<<setprecision(4)<<a*a*3.14159<<" "<<endl; return 0; }