Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
129857 王影彤 兔子永生 C++ 通过 100 0 MS 240 KB 201 2024-01-27 11:51:18

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int f1=1,f2=1,i; for(i=1;i<=20;i++){ cout<<f1<<" "<<f2<<" "; if(i%2==0) cout<<'\n'; f1=f1+f2; f2=f1+f2; } return 0; }


测评信息: