اكتب برنامج C لقراءة درجة الحرارة عند درجة مئوية وعرض رسالة مناسبة وفقًا لحالة درجة الحرارة
- برمجة
- برمجة سي c
- 2021-05-04
- Wassim
الأجوبة
/*Write a C program to read temperature in centigrade and display a suitable message according to temperature state below*/
#include <stdio.h>
void main()
{
int tmp;
printf("Input days temperature : ");
scanf("%d",&tmp);
if(tmp<0)
printf("Freezing weather.\n");
else if(tmp<10)
printf("Very cold weather.\n");
else if(tmp<20)
printf("Cold weather.\n");
else if(tmp<30)
printf("Normal in temp.\n");
else if(tmp<40)
printf("Its Hot.\n");
else
printf("Its very hot.\n");
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال