Start 2024-01-27 08:30:00

1.27复习

End 2024-01-27 12:00:00
Contest is over.
Now 2026-04-30 20:08:21

C

include <bits/stdc++.h>

using namespace std; int main() { long long m=1,n=1,i; for(i=1;i<=20;i++) {

cout<<m<<" "<<n<<" ";
if(i%2==0) cout<<"\n";
m=m+n;
n=n+m;

} return 0; }


7iok  •  2年前

The contest has ended.