Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
110155 | 饶惟允 | 04四位数移位 | C++ | Wrong Answer | 1 MS | 264 KB | 422 | 2025-02-15 10:55:05 |
#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(){ float a,b; a=3.1415926; cout<<a*1*1<<endl; cout<<a*3*3<<endl; cout<<a*5*5<<endl; cout<<a*7*7<<endl; cout<<a*9*9<<endl; return 0; }
------Input------
6234
------Answer-----
4623
------Your output-----
3.14159 28.2743 78.5398 153.938 254.469