2009-10-29 11:28:52來源不明

我也愛偶數 (swap 版)

我的弱點,拿了好多WA 冏

在此利用^ 而不用變數做交換的動作

新的交換方法

/***********************************************************/

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

main()

  int N,M;
   while(scanf("%d %d",&N,&M)==2)
      {
        if(M<N) M^=N^=M^=N;
        M=M-M%2;
        N=N+N%2;
        printf("%d\n",(M+N)*((M-N)/2+1)/2);
      }
  return 0;
}

上一篇:我愛偶數

下一篇:我也愛偶數