#include<iostream>
using namespace std;
int main(void)
{
int t,i,e,c,d;
cin>>t;
int a[t-1][5];
for(i=0;i<=t-1;i++)
{
cin>>a[i][0]>>a[i][1]>>a[i][2]>>a[i][3];
}
for(e=0;e<=t-1;e++)
{
if(a[e][1]/a[e][0]==a[e][3]/a[e][2])
{
a[e][4]=a[e][3]*(a[e][1]/a[e][0]);
}
if(a[e][1]-a[e][0]==a[e][3]-a[e][2])
{
a[e][4]=a[e][3]+a[e][1]-a[e][0];
}
}
for(c=0;c<=t-1;c++)
{
for(d=0;d<=4;d++)
{
cout<<a[c][d]<<" ";
}
cout<<"\n";
}
system("PAUSE");
return 0;
}
這是我的寫法,在我的電腦裡怎麼測都沒錯
但是一貼上來就有這樣的錯誤...
與正確輸出不相符(line:8)
您的答案為: 5 10 8 8 5
正確答案為: 5 10 15 20 25
可以麻煩解答一下嗎ˊˋ
不需要這麼麻煩,您只要規律就好。
這是我寫的程式請看看