Day7 if选择结构(多练)
if单选择结构
package struct;
import java.util.Scanner;
//if单选择结构
public class IfDemo01 {
public static void main(String[] args) {
Scanner scanner=new Scanner(System.in);
System.out.println("请输入内容:");
String s = scanner.nextLine();
//equals:判断字符串是否相等
if (s.equals("Hello")){
System.out.println(s);
}
System.out.println("End");
scanner.close();
}
}
单结构if语句就是只有if(){}
这里用判断字符串是否相等举例
if双选择结构
package struct;
import java.util.Scanner;
public class IfDemo02 {
public static void main(String[] args) {
//考试分数大于60分是及格,小于60分是不及格。
Scanner scanner=new Scanner(System.in);
System.out.println("请输入成绩:");
int score = scanner.nextInt();
if (score>60){
System.out.println("及格");
}else{
System.out.println("不及格");
}
scanner.close();
}
}
If双选择结构,是有if以及else两个关键字。如果..那就...否则...
他适用于两种选项的判断。例子为成绩及不及格。
if多选择结构
package struct;
import com.sun.scenario.effect.impl.sw.sse.SSEBlend_SRC_OUTPeer;
import java.util.Scanner;
public class IfDemo03 {
public static void main(String[] args) {
Scanner scanner=new Scanner(System.in);
/*
if 语句中至多有一个else语句,else语句在所有else if 语句之后。
if语句可以有若干个else if语句,它们必须在else语句前。
一旦其中一个else if 语句检测为ture,其他的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多选择结构的组成是由:if,else if,else来实现的。
if 语句中至多有一个else语句,else语句在所有else if 语句之后。
if语句可以有若干个else if语句,它们必须在else语句前。
一旦其中一个else if 语句检测为ture,其他的else if以及else语句都将跳过执行。