知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
max. int
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;
}