Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
56831 | 尹翊泽 | 找规律填数字 | C++ | 解答错误 | 0 | 0 MS | 252 KB | 541 | 2022-08-03 15:07:34 |
#include<bits/stdc++.h> using namespace std; int a,b,c,d,e,t,l; int main(){ while(cin>>a&&a){ cin>>b>>c>>d>>e; if(e-d==d-c&&d-c==c-b&&c-b==b-a){ l=b-a; for(int i=1;i<=5;i++){ cout<<e+l<<" "; e+=l; } cout<<endl; } if(e/d==d/c&&d/c==c/b&&c/b==b/a){ l=b/a; for(int i=1;i<=5;i++){ cout<<e*l<<" "; e*=l; } cout<<endl; } if(e==d+c&&d==c+b&&c==b+a){ t=d; for(int i=1;i<=5;i++){ e+=t; cout<<e<<" "; t=e-t; } cout<<endl; } } return 0; }