#10706: c語言測試過很多次都不行


lemontammy (跩比豬)

學校 : 國立臺北科技大學
編號 : 54557
來源 : [140.124.72.191]
最後登入時間 :
2022-02-11 22:14:15
c022. 10783 - Odd Sum -- UVa10783 | From: [61.231.80.159] | 發表日期 : 2016-02-19 14:21

line 2

正確答案為Case 2:0

我的答案是Case 2:100

-----------------------------------------------------------

#include<stdio.h>
#include<stdlib.h>

main(){
int T,a,b,i,count=1,sum;
scanf("%d",&T);
for(i=0;i<T;i++){
scanf("%d",&a);
scanf("%d",&b);
sum=(a+b)*(b-a+2)/4;
if(a>=0&&b>=a) printf("Case %d: %d\n",count,sum);
count++;
}
return 0;
}

 

 
#10718: Re:c語言測試過很多次都不行


Benson86 (nobodyzxc)

學校 : 國立彰化高級中學
編號 : 53437
來源 : [140.113.128.187]
最後登入時間 :
2020-02-25 00:10:53
c022. 10783 - Odd Sum -- UVa10783 | From: [140.119.194.86] | 發表日期 : 2016-02-22 22:00

line 2

正確答案為Case 2:0

我的答案是Case 2:100

-----------------------------------------------------------

#include
#include

main(){
int T,a,b,i,count=1,sum;
scanf("%d",&T);
for(i=0;i<T;i++){
scanf("%d",&a);
scanf("%d",&b);
sum=(a+b)*(b-a+2)/4;
if(a>=0&&b>=a) printf("Case %d: %d\n",count,sum);
count++;
}
return 0;
}

 

測資推一推 不就是 100 100 嗎??


 
ZeroJudge Forum