| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 10592 | 匿名用户 | 取余数与取整数 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 180 | 2020-12-05 18:56:40 |
#include<bits/stdc++.h> using namespace std; int main(){ double r,d,s,c,pi=3.14159; cin>>r; d=2*r; s=pi*r*r; c=2*pi*r; printf("%.4lf %.4lf %.4lf",d,c,s); return 0; }//414