else-ifラダーステートメントをC言語で説明する
これは、多方向の決定を書くための最も一般的な方法です。
構文
以下の構文を参照してください-
if (condition1) stmt1; else if (condition2) stmt2; - - - - - - - - - - else if (condition n) stmtn; else stmt x;
アルゴリズム
以下に示すアルゴリズムを参照してください-
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
例
以下は、ElseIfLadder条件演算子を実行するCプログラムです-
#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); } }
出力
次の出力が表示されます-
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
はしごの場合、elseを使用して生徒の成績を表示する別のCプログラムを検討してください-
#include<stdio.h> int main(){ int marks; printf("Enter the marks of a student:\n"); scanf("%d",&marks); if(marks <=100 && marks >= 90) printf("Grade=A"); else if(marks < 90 && marks>= 80) printf("Grade=B"); else if(marks < 80 && marks >= 70) printf("Grade=C"); else if(marks < 70 && marks >= 60) printf("Grade=D"); else if(marks < 60 && marks > 50) printf("Grade=E"); else if(marks == 50) printf("Grade=F"); else if(marks < 50 && marks >= 0) printf("Fail"); else printf("Enter a valid score between 0 and 100"); return 0; }
出力
次の出力が表示されます-
Run 1: Enter the marks of a student:78 Grade=C Run 2: Enter the marks of a student:98 Grade=A
-
C言語で「simpleif」ステートメントを説明する
「if」キーワードは、論理条件が真の場合に一連のステートメントを実行するために使用されます。 構文 構文は以下のとおりです- if (condition){ Statement (s) } 「simpleif」ステートメントの機能 ifブロック内のステートメントは、条件がtrueの場合にのみ実行され、それ以外の場合は実行されません。 条件がtrueのときに1つのステートメントのみを実行する場合は、中括弧({})を削除できます。一般に、実行するステートメントが1つしかない場合でも、中括弧は省略しないでください。 条件がtrueの場合、複数のステ
-
「elseifladder」条件文がC言語の場合、どのように使用しますか?
その他 −はしごが多方向の決定を書く最も一般的な方法である場合。 ラダーが次の場合のelseの構文- if (condition1) stmt1; else if (condition2) stmt2; - - - - - - - - - - else if (condition n) stmtn; else stmt x; フローチャート 以下のフロー