用c语言编写一个观察系统处理整数上溢,浮点数上溢,浮点数下溢的程序
时间: 2024-05-29 11:11:34 浏览: 111
#include <stdio.h>
#include <limits.h>
#include <float.h>
int main() {
int a = INT_MAX;
float b = FLT_MAX;
float c = FLT_MIN;
printf("INT_MAX + 1 = %d\n", a + 1);
printf("FLT_MAX * 2 = %e\n", b * 2);
printf("FLT_MIN / 2 = %e\n", c / 2);
return 0;
}
阅读全文