欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

判断成绩情况

程序员文章站 2024-03-23 18:16:04
...
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("英语不及格");
		}

	}

}