Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
6070 | 邓小龙 | 一起找规律 | C++ | Accepted | 0 MS | 260 KB | 406 | 2025-01-03 20:50:15 |
#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(){ //思路一:第n项的值为2的n次方-1 int s=1; for(int i=1;i<=30;i++){ s=s*2; cout<<s-1<<" "; } return 0; }