#12038: C++曬一下答案


dragoninpants (西魯完全體)

學校 : 國立交通大學
編號 : 66321
來源 : [218.32.73.12]
最後登入時間 :
2017-05-18 11:56:35
a005. Eva 的回家作業 -- POJ | From: [218.32.73.12] | 發表日期 : 2017-05-17 11:34

#include <cstdlib>
#include <iostream>

using namespace std;

int main()
{
int t, a, b, c, d, e;


while (cin >> t)
{
for (int s = 1; s <= t ; s++)
{
cin >> a >> b >> c >> d ;

if ( b/a == c/b && c/b == d/c)
{
e = d*d/c;
cout << a << " " << b << " " << c << " " << d << " " << e << endl;
}

else if ( b-a == c-b && c-b == d-c)
{
e = d+d-c;
cout << a << " " << b << " " << c << " " << d << " " << e << endl;
}
}
}

return 0;
}

 

+++歡迎討論+++

小弟是113管院畢業,出社會近一年,十分後悔沒有學好寫程式,目前自學C++中。

+++歡迎討論+++

 
ZeroJudge Forum