判断成绩情况
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断成绩情况相关的知识,希望对你有一定的参考价值。
package course; public class Getifelse { public static void main(String[] args) { int math=95; int english=56; if(math>60){ System.out.println("数学及格了"); }else{ System.out.println("数学不及格"); } if(english>60){ System.out.println("英语及格了"); }else{ System.out.println("英语不及格"); } } }
以上是关于判断成绩情况的主要内容,如果未能解决你的问题,请参考以下文章
php语言编写switch判断成绩代码。分别输出优秀、良好、中等、及格和不及格。
php语言编写switch判断成绩代码。分别输出优秀、良好、中等、及格和不及格。