Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
129768 黄曦 兔子永生 C++ 通过 100 0 MS 248 KB 236 2024-01-27 10:41:51

Tests(1/1):


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


测评信息: