#14584: Easy c answer


blackconqueror (boweichen)

學校 : 國立臺南第一高級中學
編號 : 58182
來源 : [220.132.250.41]
最後登入時間 :
2020-06-01 10:17:42
d485. 我愛偶數 -- 板橋高中教學題 | From: [220.132.250.41] | 發表日期 : 2018-07-25 11:47

//

//  main.c

//  practice

//

//  Created by Chen on 2018/6/24.

//  Copyright © 2018年 Chen. All rights reserved.

//

 

#include <stdio.h>

#include <math.h>

 

 

int main(int argc, const char * argv[]) {

    int a,b;

    while (scanf("%d%d",&a,&b)!=EOF) {

        int sum=(b-a)/2 +(!(a%2)||!(b%2));

        printf("%d\n",sum);

       

        

    }

    

    return 0;

}

 

 

 
ZeroJudge Forum