else – 如果梯子是编写多路决策的最通用方式。
else if 梯子的语法如下 –
if (condition1) stmt1;else if (condition2) stmt2; - - - - - - - - - - else if (condition n) stmtn; else stmt x;
流程图
请参阅下面给出的流程图 –

示例
以下是执行 Else If Ladder 条件语句的 C 程序 –
立即学习“C语言免费学习笔记(深入)”;
现场演示
#includevoid 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 55 is the largest
以上就是如何在C语言中使用“else if ladder”条件语句?的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1444846.html
微信扫一扫
支付宝扫一扫