#include <stdio.h> int main() { int max_int = (1<<31) - 1; //第一位是符号位 printf("The max value of int on 32 machine: %d\n", max_int); unsigned int ...
確定! 回上一頁