C语言问题不知道怎么写?1
发布网友
发布时间:2023-11-01 21:07
我来回答
共1个回答
热心网友
时间:2024-02-28 17:59
#include <stdio.h>
int main()
{
int temp;
printf("请输入温度:");
scanf("%d", &temp);
if (temp >= 40)
printf("温度红色预警!");
if (temp >= 37 && temp < 40)
printf("温度橙色预警!");
if (temp >= 35 && temp < 37)
printf("温度*预警!");
if(temp<35)
printf("无温度预警!");
return 0;
}