package shiyue21;
import java.util.Scanner;
public class text3 {
public static void main(String[] args) { // TODO Auto-generated method stub
//判断大学生体侧项目中立定跳远成绩的等级 //等级划分规则: //男生版等级 : 不及格( length ≤ 205 )、及格( 210 ≤ length ≤ 246 )、良好( 250 ≤ length ≤ 258 )、优秀 //( 265 ≤ length ) //女生版等级 : 不及格( length ≤ 147 )、及格( 152 ≤ length ≤ 179 )、良好( 182 ≤ length ≤ 189 )、优秀 //( 196 ≤ length )
//程序执行流程:首先提示用户输入被判断学生的性别,然后提示用户输入测试成绩,最后输出学生立定跳远的测试成绩的等级
Scanner input = new Scanner(System.in);
System.out.println("boy or girl)");
String str=input.nextLine();
System.out.println("请输入成绩");
double score=input.nextDouble();
System.out.println(score);
if(str.equals("boy")){
if(score<=205){
System.out.println("不及格");
}else if(score>=205&&score<=246){
System.out.println("及格");
}else if(score>=246&&score<=258){
System.out.println("良好");
}else {
System.out.println("优秀");
}
}else{
if(score<=147){
System.out.println("不及格");
}else if(score>147&&score<=179){
System.out.println("及格");
}else if(score>179&&score<=189){
System.out.println("良好");
}else {
System.out.println("优秀");
}
}
}
}