#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int a,b,c,d,e,f,i;
scanf("%d",&a);
for(i=0;i<a;i++){
scanf("%d%d%d%d",&b,&c,&d,&e);
if(c-b == d-c){
f=e+(c-b);
printf("%d %d %d %d %d",b,c,d,e,f);
}
else{
f=e*(c/b);
printf("%d %d %d %d %d",b,c,d,e,f);
}
}
return 0;
}
不知哪裡有錯,可否請教大家?