学习Java的第三天

Java学习第三天

用户交互Scanner

用法:

import java.util.Scanner;
...
Scanner scanner=new Scanner(System.in);
String str =scanner.next();


scanner.close();

next()和nextLine()

  1. 对输入有效字符前遇到空白,next()会自动将其去掉。
  2. 只有输入有效字符才能将后面输入的空白作为分隔符或结束符。
  3. nextLine()以Enter为结束符,也就是说nextLine()方法返回的是输入回车之前的所有字符。
  4. next()不能接收带有空格的字符串,而nextLine可以。

Java流程控制

选择结构

  • if语句
  • if -----else语句
  • if-----else if语句
  • switch语句

循环语句

  • while 和do() while 语句 while先判定在执行,do() while先执行在判定.

  • for 语句

    for(初始值;布尔表达式;更新){

    ​ 语句;

    }

  • 遍历数组的方法

    int[] arr ={1,2,3,4,5,6};
    for(int i : arr){
        System.out.print(i);
    }
  • break 跳出循环,continue跳出此次循环。

上一篇:用JAVA刷算法的常见问题及解决之道 系列(一)


下一篇:java3种的输入方式