max. int
(高顯忠, sjgau4311@gmail.com, 2011-01-17 22:22)
1樓
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b;
a= 10;
b= a + 1;
// 11 > 10, b > a
while (b > a) {
a= a + 1;
b= a + 1;
}
printf("\n a= %d, b= %d \n", a, b);
system("pause");
return 0;
}