提交时间:2024-01-27 10:36:48
运行 ID: 129763
#include<bits/stdc++.h> using namespace std; int main() { unsigned long long f1=1,f2=1; cout<<f1<<endl; cout<<f2<<endl; for(int i=1;i<=40;i++) {f1=f1+f2; cout<<f1<<endl; f2=f1+f2; cout<<f2<<endl;} return 0; }