第5天
判断和循环
一、流程与控制语句。
1、顺序结构
是程序默认的执行流程,按照代码的先后顺序,从上到下依次进行。
2、分支结构
①、if语句。
②、switch
package 选择; import java.util.Scanner; public class switch语句 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int i = sc.nextInt(); if (i >= 1 && i <= 7) { switch (i) { case 1: System.out.println("跑步"); break; case 2: System.out.println("游泳"); break; case 3: System.out.println("慢走"); break; case 4: System.out.println("动感单车"); break; case 5: System.out.println("拳击"); break; case 6: System.out.println("爬山"); break; case 7: System.out.println("好好吃一顿"); break; } } else { System.out.println("输入的信息有误"); } } }
switch新特性