选择结构
i f单选择结构
很多时候要去判断一个东西是否可行,然后我们才去执行,这样一个过程在程序中用if语句来表示
语法格式:
if(布尔表达式){ //如果布尔表达式为true将执行的语句}
代码演示
import java.util.Scanner;public class rug { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("请输入内容:"); String nextLine = scanner.nextLine(); //equals:判断字符串是否相等 if (nextLine.equals("hello")){ System.out.println(nextLine); } System.out.println("end"); scanner.close(); }}
if双选择结构
语法结构
if (布尔表达式){ //如果布尔值表达式为true}else{ //如果布尔值表达式为false}
输入分数案例
当我们输入60分时,大于60分输出及格,小于60分为不及格
import java.util.Scanner;public class rug { 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多选择结构
import java.util.Scanner;public class rug { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("请输入你的分数:"); int score = scanner.nextInt(); if (score <= 30){ System.out.println("差"); }else if (score <= 50){ System.out.println("中"); }else if (score <= 80 ){ System.out.println("好"); }else if (score < 100 ){ System.out.println("优"); }else if (score == 100){ System.out.println("恭喜你满分"); }else{ System.out.println("你的成绩不合法"); } scanner.close(); }}
switch多选择结构
switch(表达式){ case value : //语句 break;//可选 case value : //语句 break ;//可选//可以自定义case语句 default ://可选 //语句}
switch语句类型可以是
byte,short,int,char
switch支持String类型
<......原文转载:http://www.shaoqun.com/a/894445.html
跨境电商:https://www.ikjzd.com/
pat:https://www.ikjzd.com/w/1079
福茂:https://www.ikjzd.com/w/1633
tracker:https://www.ikjzd.com/w/2720
选择结构if单选择结构很多时候要去判断一个东西是否可行,然后我们才去执行,这样一个过程在程序中用if语句来表示语法格式:if(布尔表达式){ //如果布尔表达式为true将执行的语句}代码演示importjava.util.Scanner;publicclassrug{publicstaticvoidmain(String[]args){Scannerscanner=newScanner(Syst
skyee:https://www.ikjzd.com/w/290
mymall:https://www.ikjzd.com/w/1050
探访古镇 感受古风古韵 - :http://www.30bags.com/a/410429.html
探访杭州野生动物园丑萌马来貘:http://www.30bags.com/a/429918.html
探访荷兰金德代克风车群 世界文化遗产冬季日落景色美不胜收:http://www.30bags.com/a/241729.html
探访户外天堂东方圣山四姑娘山 - :http://www.30bags.com/a/409492.html
两男一女口述在车里下面被添 女人自述炮约真实经历:http://lady.shaoqun.com/m/a/247996.html
男人太粗太长弄死了我了 我受不了了好想被狂躁:http://www.30bags.com/m/a/249931.html
Ebay账号被冻结怎么办?如何解封?:https://www.ikjzd.com/articles/147068
外贸B2B营销的7大主流SNS,你知道吗?:https://www.ikjzd.com/articles/147067
亚马逊连续第三季营收超1000亿美元:https://www.ikjzd.com/articles/147066
5梨园两口子的爱情故事比舞台上的更动人。屈从未放弃:http://lady.shaoqun.com/a/428574.html