اكتب برنامج C لقبول ارتفاع الشخص بالسنتيمتر وصنف الشخص وفقًا لطوله

  • برمجة
  • برمجة سي c

اكتب برنامج C لقبول ارتفاع الشخص بالسنتيمتر وصنف الشخص وفقًا لطوله

بيانات للاختبار : 135

الخرج المتوقع :

The person is Dwarf.

الأجوبة

/*Write a C program to accept the height of a person in centimeter and categorize the person according to their height*/

#include <stdio.h>
void main()
{
    float PerHeight;
 
    printf("Input the height of the person (in centimetres) :");
    scanf("%f", &PerHeight);
    if (PerHeight < 150.0)
        printf("The person is Dwarf. \n");
    else if ((PerHeight >= 150.0) && (PerHeight < 165.0))
        printf("The person is  average heighted. \n");
    else if ((PerHeight >= 165.0) && (PerHeight <= 195.0))
        printf("The person is taller. \n");
    else
        printf("Abnormal height.\n");
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...