a005.
Eva 的回家作業
--
POJ
| From: [140.120.104.189] |
發表日期
:
2011-09-10 16:03
#include<stdio.h>
#include<stdlib.h>
main()
{
int a,b,c,e;
while(scanf("%d%d%d%d",&a,&b,&c,&e))
{if(a+e==b+c)
{
printf("%d%d%d%d%d\n",a,b,c,e,e+b-a);
}
else if(a*e==b*c)
{
printf("%d%d%d%d%d\n",a,b,c,e,e*(b/a));
}
}
}
不知道為什麼一直TLS
想請各位高手幫幫忙><