| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5256 | 孙文谦 | 与圆相关的计算 | C++ | Accepted | 100 | 0 MS | 252 KB | 267 | 2020-07-28 17:35:58 |
#include<bits/stdc++.h> using namespace std; int main(){ double r,d,c,s; cin>>r; d=r*2; c=r*2*3.1415926535; s=r*r*3.1415926535; printf("%.4lf",d); cout<<" "; printf("%.4lf",c); cout<<" "; printf("%.4lf",s); return 0; }