| ½Æ»s¥N½X#if 0
a= 2147483647, b= -2147483648
½Ð«ö¥ô·NÁäÄ~Äò . . .
#endif
// ----------------------------------------------
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
   // int ªº³Ì¤jȵ¥©ó ¦h¤Ö¡H
   int a, b, c;
   a= 10;
   b= a + 1;
   // b > a
   
   while (b > a) {
      a++;
      b= a + 1;
   }
   
   printf("a= %d, b= %d \n", a, b);
   system("PAUSE");
   return 0;
}
 |