1、用户交互Scanner
Scanner s = new Scanner(System.in);//通过Scanner类的next()和nextLine()方法获取输入的字符串;
//在读取前我们一般需要使用hasNext()与hasNextLine()判断是否还有输入的数据
//判断用户没有输入字符串
if(s.hasNext()){
String str = s.next();//用next方式接收,不能得到带有空格的字符
System.out.println("输入的内容为:"+str);
}
//涉及到IO流,要习惯关闭
s.close();
//nextLine()方法返回输入回车前的所有字符
2、顺序结构
3、选择结构
- if
- switch
String name = "牛牛";
switch(name){
case "牛牛":
System.out.println("这是一个帅哥!");
break;
case "niuniu":
System.out.println("这是一牛人!");
break;
default:
System.out.println("弄啥子");
}
4、循环结构
while(布尔表达式){}
//do...while保证至少执行一次
do{
//执行
}while(布尔表达式)
//for循环
for(int i=0;i<100;i++){
System.out.println(i);
}
//增强for,遍历数组合集合
int[] numbers = {1,2,3,4};
for(int i:numbers){
System.out.println(i);
}
5、break&continue
//break 退出循环
//continue 用于终止某次循环,跳过某次循环
标签:控制,Scanner,流程,03Java,System,break,while,println,out
From: https://www.cnblogs.com/niuniuLOL/p/16817424.html