关于if的运用
Posted lly-start
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于if的运用相关的知识,希望对你有一定的参考价值。
if单判断
package com.struct;
?
import java.util.Scanner;
?
public class ifDomn01 {
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 else
package com.struct;
?
import java.util.Scanner;
?
public class ifDomn02 {
public static void main(String[] args) {
?
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 else 连续使用
package com.struct;
?
import java.util.Scanner;
?
public class IfDomn03 {
public static void main(String[] args) {
?
Scanner scanner=new Scanner(System.in);
/**
* if最多一个else语句,else语句在所以的else if语句后面
* 一旦其中一个else if语句检测为true,其他的else if语句都跳过执行*/
?
System.out.println("请输入成绩: ");
?
int score = scanner.nextInt();
?
if (score==60){
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的运用的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅关于Android平台获取文件的mime类型:为啥不传小写后缀名就获取不到mimeType?为啥android 4.4系统获取不到webp格式的mimeType呢?(代码片段
我的Android进阶之旅关于Android平台获取文件的mime类型:为啥不传小写后缀名就获取不到mimeType?为啥android 4.4系统获取不到webp格式的mimeType呢?(代码片段