Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99255 | 徐齐力 | 03圆的面积 | C++ | Wrong Answer | 0 MS | 268 KB | 409 | 2024-11-24 18:16:47 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ double a; a=3.1415926; cout<<a<<endl; cout<<a*3<<endl; cout<<a*5<<endl; cout<<a*7<<endl; cout<<a*9<<endl; return 0; }
------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
3.14159 9.42478 15.708 21.9911 28.2743