1. 数据类型数值范围溢出 如标题所述,该错误出现的原因是由于变量的值超出该数据类型取值范围而导致的错误. 例题如下: (IDE环境:C-Free,编译器为mingw5,如下图) # include <iostream> int main(){ short int a = ; // short int 取值范围:-32768~32768 short b = ; // short 是short int 的缩写 int c = a + b; // int 取值范围:-2147483648 ~214…