Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

จะใช้คำสั่งแบบมีเงื่อนไข 'else if ladder' เป็นภาษา C ได้อย่างไร


อื่นๆ − หากบันไดเป็นวิธีการทั่วไปที่สุดในการเขียนการตัดสินใจแบบหลายทาง

ไวยากรณ์สำหรับ else ถ้าแลดเดอร์เป็นดังนี้ -

if (condition1)
   stmt1;
else if (condition2)
   stmt2;
   - - - - -
   - - - - -
   else if (condition n)
      stmtn;
   else
      stmt x;

ผังงาน

อ้างอิงผังงานที่ระบุด้านล่าง -

จะใช้คำสั่งแบบมีเงื่อนไข  else if ladder  เป็นภาษา C ได้อย่างไร

ตัวอย่าง

ต่อไปนี้คือโปรแกรม C เพื่อดำเนินการคำสั่งเงื่อนไขของ Else If Ladder -

#include<stdio.h>
void main (){
   int a,b,c,d;
   printf("Enter the values of a,b,c,d: ");
   scanf("%d%d%d%d",&a,&b,&c,&d);
   if(a>b){
      printf("%d is the largest",a);
   }
   else if(b>c){
      printf("%d is the largest",b);
   }
   else if(c>d){
      printf("%d is the largest",c);
   }
   else{
      printf("%d is the largest",d);
   }
}

ผลลัพธ์

เมื่อโปรแกรมข้างต้นทำงาน มันจะให้ผลลัพธ์ดังต่อไปนี้ −

Enter the values of a,b,c,d: 2 3 4 5
5 is the largest