Java流程控制
一、 用户交互Scanne
二、顺序结构
三、选择结构
四、循环结构
一、 用户交互Scanne
①基础
- java.util.Scanner是Java5的新特征,我们可以通过工具类(Scanner类)来获取用户的输入。
- 基本语法
Scanner s = new Scanner(System.in)
- 通过Scanner类的next()与nextLine()方法获取输入的字符串,在读取前我们一般需要使用hasNext() 与**hasNextLine()**判断是否还有输入的数据。
②next和nextline接收的不同
- next
- 一定要读取到有效字符后才可以结束输入。
- 输入有效字符之前遇到的空白,next()方法会自动将其去掉。
- 只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。
- next()不能得到带有空格的字符串。
public class Demo01 {
public static void main(String[] args) {
//创建一个扫描器对象,用于接受键盘数据
Scanner scanner = new Scanner(System.in);
System.out.println("使用nwxt方式接收:");
//判断用户有没有输入字符串
if (scanner.hasNext()){
//使用next方式接收
String str = scanner.next();//程序会等待用户输入完毕
System.out.println("输出的内容为:"+str);
}
//凡是属于IO流(即输入输出流)的类如果不关闭会一直占用资源,要养成好习惯用完就关掉
scanner.close();
}
}
/*
使用nwxt方式接收:
Hello world
输出的内容为:Hello
*/
- nextLine():
- 以Enter为结束符,也就是说nextLine()方法返回的是输入回车之前的所有字符。
- 可以获得空白。
public class Demo02 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("使用nwxt方式接收:");
//判断是否还有输入
if (scanner.hasNextLine()){
//使用nextLine方式接收
String str = scanner.nextLine();//程序会等待用户输入完毕
System.out.println("输出的内容为:"+str);
}
//凡是属于IO流(即输入输出流)的类如果不关闭会一直占用资源,要养成好习惯用完就关掉
scanner.close();
}
}
/*
使用nwxt方式接收:
Hello world
输出的内容为:Hello world
*/
- 可以简化为:
public class Demo03 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入数据:");
String str = scanner.nextLine();
System.out.println("输出的内容为:"+str);
scanner.close();
}
}
/*
请输入数据:
Hello world 123
输出的内容为:Hello world 123*/
③Scanner接收其他数据类型
- 存在类似hasnextInt与nextInt,hasNextFloat与nextFloat等方法,与上面的nextline,next用法相同,只是有了数据类型匹配。
public class Demo04 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int i = 0;
float f = 0.0f;
System.out.println("请输入整数:");
if (scanner.hasNextInt()) { //比hasNextLine()更加具体
i = scanner.nextInt();
System.out.println("整数数据:" + i);
} else {
System.out.println("输入的不是整数数据!");
}
System.out.println("请输入小数:");
if (scanner.hasNextFloat()) {
f = scanner.nextFloat();
System.out.println("小数数据:" + i);
} else {
System.out.println("输入的不是小数数据!");
scanner.close();
}
}
}
/*
请输入整数:
10
整数数据:10
请输入小数:
1.1
小数数据:10
*/
/*
请输入整数:
10.1
输入的不是整数数据!
请输入小数:
小数数据:0
*/
- 练习题
我们可以输入多个数字,并求其总和与平均数,每输入一个数字用回车确认,通过输入非数字来结束输入并输出执行结果
public class Demo05 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
//和
double sum = 0;
//计算输入了多少个数字
int m = 0;
//通过循环判断是否还有输入,并在里面对每一次进行求和和统计
while(scanner.hasNextDouble()){
double x = scanner.nextDouble();
m++;
sum += x;
System.out.println("你输入了第" + m + "个数据,当前的和为:" + sum);
}
System.out.println(m + "个数的和为" + sum);
System.out.println(m + "个数的平均值为" + (sum/m));
}
}
/*
10
你输入了第1个数据,当前的和为:10.0
20
你输入了第2个数据,当前的和为:30.0
x
2个数的和为30.0
2个数的平均值为15.0
*/
二、顺序结构
public class Demo01 {
public static void main(String[] args) {
System.out.println("hello1");
System.out.println("hello2");
System.out.println("hello3");
}
}
/*
hello1
hello2
hello3
*/
三、选择结构
①if选择结构
- 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();
}
}
/*
请输入:
He
End
*/
/*
请输入:
Hello
Hello
End
*/
- if双选择结构
public class IfDemo02 {
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("不及格");
}
System.out.println("end");
scanner.close();
}
}
- if多选择结构
public class IfDemo03 {
public static void main(String[] args) {
/**
if语句至多有1个else语句(可以没有!),eLse语句在所有的else if 语句之后。
if语句可以有若干个else if语句,它们必须在else语句之前。
一旦其中一个else if语句检测为true,其他的else if以及else语句都将跳过执行。
*/
Scanner scanner = new Scanner(System.in);
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("A级");
}else if(score<60 && score >=0) {
System.out.println("不及格");
}else{
System.out.println("成绩不合法");
}
System.out.println("end");
scanner.close();
}
}
- 嵌套的if结构
②switch多选择结构
public class switchDemo01 {
public static void main(String[] args) {
char grade = 'C';
switch (grade){
case 'A':
System.out.println("优秀");
break;//没有break会发生case穿透,输出多个结果
case 'B':
System.out.println("良好");
break;
case 'C':
System.out.println("及格");
break;
case 'D':
System.out.println("再接再厉");
break;
case 'E':
System.out.println("不及格");
break;
default:
System.out.println("未知等级");
}
}
}
public class SwitchDemo02 {
public static void main(String[] args) {
String s = "你好";
//JDK7的新特性,表达式结果也可以是字符串!
//字符串的本质还是数字
//反编译 java---class(字节码文件)---反编译(IDEA)
switch (s){
case "你好":
System.out.println("Hello");
break;
case "世界":
System.out.println("世界");
break;
default:
System.out.println("???");
}
}
}
- 扩展内容:反编译
编译:java文件 —> class文件(字节码文件)
反编译:编译的逆过程,可以使用的工具有idea
dea查看项目编译产生的文件路径:File —> Project Structure
idea反编译方法:
无法直接复制,可以选择打开文件夹的方式打开.class的字节码文件
打开文件夹方式: 在某个文件夹下右键 —> open in —>Explorer,将相应的.class文件复制进相应的文件夹即可
四、循环结构
①while循环
public class WhileDemo01 {
public static void main(String[] args) {
//输出1~100
int i = 0;
while(i<100)
{
i++;
System.out.println(i);
}
//计算1+2+...+100
int num = 0;
int sum = 0;
while( num<= 100){
sum = sum + num;
num++;
}
System.out.println(sum);
}
}
②do…while循环
public class DoWhileDemo01 {
public static void main(String[] args) {
int a=0;
while (a<0){
System.out.println(a);
a++;
}
System.out.println("================");
do{
a++;
}while (a<0);
System.out.println(a); //1
}
}
③for循环
public class ForDemo01 {
//循环输出1-100
public static void main(String[] args) {
for (int i=1;i<=100;i++){
System.out.println(i);
}
/*
100.f可以快捷生成
for (int i = 0; i < 100; i++) {
}
*/
}
}
- 练习:计算0-100之间的奇数和偶数的和
public class ForDemo02 {
public static void main(String[] args) {
int oddSum = 0;
int evenSum = 0;
for (int i = 0; i < 100; i++) {
if (i%2 == 0){
evenSum += i;
}else {
oddSum += i;
}
}
System.out.println("奇数的和为:" + oddSum);
System.out.println("偶数的和为:" + evenSum);
/*
奇数的和为:2500
偶数的和为:2450
*/
}
}
- 练习:循环输出1-1000之间能被5整除的数,并且每行输出3个
public class ForDemo03 {
public static void main(String[] args) {
/*
int x = 0;
for (int i = 1; i < 1000; i++) {
if (i%5 == 0){
System.out.print(i + " ");
x++;
if(x == 3){
System.out.println();
x = 0;
}
}
}
*/
for (int i = 1; i < 1000; i++) {
if (i%5 == 0){
System.out.print(i + "\t");
}
if (i%(5*3) == 0){
System.out.println();
}
}
}
}
- 练习:打印九九乘法表
package struct;
public class ForDemo04 {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++) {
for(int j = 1;j <= i;j++){
System.out.print(j + "*" + i + "=" + (j*i) + "\t");
}
System.out.println();
}
}
}
/*
1*1=1
1*2=2 2*2=4
1*3=3 2*3=6 3*3=9
1*4=4 2*4=8 3*4=12 4*4=16
1*5=5 2*5=10 3*5=15 4*5=20 5*5=25
1*6=6 2*6=12 3*6=18 4*6=24 5*6=30 6*6=36
1*7=7 2*7=14 3*7=21 4*7=28 5*7=35 6*7=42 7*7=49
1*8=8 2*8=16 3*8=24 4*8=32 5*8=40 6*8=48 7*8=56 8*8=64
1*9=9 2*9=18 3*9=27 4*9=36 5*9=45 6*9=54 7*9=63 8*9=72 9*9=81
*/
④增强for循环
package struct;
public class ForDemo05 {
public static void main(String[] args) {
int [] numbers = {10,20,30,40,50};//定义了一个数组
//遍历数组的元素
for(int x:numbers){
System.out.println(x);
}
}
}
/*
10
20
30
40
50
*/
⑤break、continue、goto
-
break
-
continue
-
goto
-
练习:打印三角形及Debug