【if选择结构】
2022/1/25 23:09:42
本文主要是介绍【if选择结构】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
public class IfDemo01 { public static void main(String[] args) { Scanner scanner =new Scanner (System.in); //if单选择结构 System.out.println("请输入一个内容:"); String s = scanner.nextLine(); //equalsP:判断字符串是否相等 if (s .equals("Hello")){ System.out.println(s); } System.out.println("hh");
Scanner scanner=new Scanner(System.in); System.out.println("请输入成绩"); int score = scanner.nextInt(); if (score>60){ System.out.println("及格"); }else { System.out.println("不及格"); }
Scanner scanner = new Scanner(System.in); /*if多选择结构 if 语句至少多有一个else 语句,else 语句在所有的else if 语句之后。 if 语句可以有若干个else if 语句 ,它们必须在 else 语句之后。 一旦其中一个 else if 语句检测为 true ,其他的 else if 以及 else 语句都将跳过执行。 */ System.out.println("请输入成绩"); int score = scanner.nextInt(); if (score == 100) { System.out.println("恭喜满分"); } else if (score < 100 && score >= 90) { System.out.println("A级"); } else if (score < 90 && score >= 80) { System.out.println("B级"); } else if (score < 80 && score >= 70) { System.out.println("C级"); } else if (score < 70 && score >= 60) { System.out.println("D级"); } else if (score < 60 && score >= 0) { System.out.println("不及格"); } else { System.out.println("成绩不合法"); }
scanner.close(); } }
这篇关于【if选择结构】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-102025 蛇年,J 人直播带货内容审核团队必备的办公软件有哪 6 款?
- 2025-01-10高效运营背后的支柱:文档管理优化指南
- 2025-01-10年末压力山大?试试优化你的文档管理
- 2025-01-10跨部门协作中的进度追踪重要性解析
- 2025-01-10总结 JavaScript 中的变体函数调用方式
- 2025-01-10HR团队如何通过数据驱动提升管理效率?6个策略
- 2025-01-10WBS实战指南:如何一步步构建高效项目管理框架?
- 2025-01-10实现精准执行:团队协作新方法
- 2025-01-10如何使用工具提升活动策划团队的工作效率?几个必备工具推荐
- 2025-01-10WiX 标签使用介绍:打造专业安装程序的利器