Rumah > Artikel > pembangunan bahagian belakang > Menjelaskan pernyataan tangga lain-jika dalam C
Ini ialah cara paling umum untuk menulis keputusan pelbagai hala.
Sila rujuk sintaks yang diberikan di bawah -
if (condition1) stmt1; else if (condition2) stmt2; - - - - - - - - - - else if (condition n) stmtn; else stmt x;
Rujuk algoritma yang diberikan di bawah −
START Step 1: Declare int variables. Step 2: Read a,b,c,d values at runtime Step 3: i. if(a>b && a>c && a>d) Print a is largest ii.else if(b>c && b>a && b>d) Print b is largest iii. else if(c>d && c>a && c>b) Print c is largest iv. else print d is largest STOP
#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 && a>c && a>d){ printf("%d is the largest",a); }else if(b>c && b>a && b>d){ printf("%d is the largest",b); }else if(c>d && c>a && c>b){ printf("%d is the largest",c); }else{ printf("%d is the largest",d); } }
Contoh keadaan C execute
Run 1:Enter the values of a,b,c,d: 2 4 6 8 8 is the largest Run 2: Enter the values of a,b,c,d: 23 12 56 23 56 is the largest
Atas ialah kandungan terperinci Menjelaskan pernyataan tangga lain-jika dalam C. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!