Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
87555 | 陶婉晴 | 03圆的面积 | C++ | Wrong Answer | 1 MS | 264 KB | 218 | 2024-08-10 16:29:24 |
#include<bits/stdc++.h> using namespace std; int main(){ cout<<1*2*3.1415926<<endl; cout<<3*2*3.1415926<<endl; cout<<5*2*3.1415926<<endl; cout<<7*2*3.1415926<<endl; cout<<9*2*3.1415926<<endl; return 0; }
------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
6.28319 18.8496 31.4159 43.9823 56.5487