可以使用Scanner类来获取用户输入
基本语法
Scanner s = new Scanner(System.in);
使用next()以及nextLine()方法来获取输入的字符串,注意在读取前通过hasNext()、hasNextLine()判断是否还有输入的数据
public class Demo01{
public static void main(String[] args){
// 创建一个扫描器对象,用于接收键盘数据
Scanner scanner = new Scanner(System.in);
System.out.printIn("请输入数据:");
// 判断用户有没有输入字符串
if (Scanner.hasNext()){
// 使用next方式接收
Strinf str = Scanner.next(); // 程序会等待用户输入完毕
System.out.printIn("输出的内容为:" + str);
}
scanner.close(); // 凡是IO流的类使用完要关掉,节省资源
}
}
next()与nextLine()区别:
next():
nextLine():
public class Demo02{
public static void main(String[] args){
// 创建一个扫描器对象,用于接收键盘数据
Scanner scanner = new Scanner(System.in);
int i = 0;
float j = 0.0f
System.out.printIn("请输入整数:");
// 判断用户有没有输入字符串
if(scanner.hasNextInt()){
i = scanner.nextInt();
System.out.printIn("输入的是整数数据:" + i);
}
else{
System.out.printIn("输入的不是整数数据!");
}
System.out.printIn("请输入小数:");
// 判断用户有没有输入字符串
if(scanner.hasNextFloat()){
j = scanner.nextFloat();
System.out.printIn("输入的是小数数据:" + j);
}
else{
System.out.printIn("输入的不是小数数据!");
}
scanner.close(); // 凡是IO流的类使用完要关掉,节省资源
}
}
案例:
package com.yue.scanner;
import java.util.Scanner;
public class Scanner{
public static void main(String[] args){
// 我们可以输入多个数字,并求其总和与平均数,每输入一个数字用回车确认,通过输入非数字来结束输入并输出执行结果
Scanner scanner = new Scanner(System.in);
// 和
double sum = 0;
// 记录循环次数
int m = 0;
System.out.printIn("请输入数据(输入非数字结束运算):");
while(scanner.hasNextDouble()){
double x = scanner.nextDouble();
m = m + 1;
sum = sum + x;
System.out.printIn("当前输入的是第" + m + "个数据," + "计算结果为:sum =" + sum);
}
System.out.printIn(m + "个数的和为:" + sum);
System.out.printIn(m + "个数的平均值为:" + (sum/m) ); // 注意这里记得加括号不然会把式子直接当字符输出
}
}
依次执行语句
package com.yue.struct;
public class Sequence {
public static void main(String[] args) {
System.out.println("1");
System.out.println("2");
System.out.println("3"); //顺序输出123
}
}
语句示例:
package com.yue.struct;
import java.util.Scanner;
public class IfDemo {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入内容:");
String s = scanner.nextLine();
// 接下来判断字符串,非数值不要用==
if(s.equals("hello")){
System.out.println(s);
}
System.out.println("end");
scanner.close();
}
}
图示:
语句示例:
package com.yue.struct;
import java.util.Scanner;
public class IfDemo {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入内容:");
String s = scanner.nextLine();
// 接下来判断字符串,非数值不要用==
if(s.equals("hello")){
System.out.println(s);
}
else{
System.out.println("end"); //跟单选择结构不同,多了个else
}
scanner.close();
}
}
图示:
if最前,else最后,中间可以夹杂若干个else if
语句示例:
package com.yue.struct;
import java.sql.SQLOutput;
import java.util.Scanner;
public class MulIfDemo {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入成绩:");
Double score = scanner.nextDouble();
if (score == 100){
System.out.println("满分S级");
}
else if (score>=80 && score<90){
System.out.println("A级");
}
else if (score>=70 && score<80){
System.out.println("B级");
}
else if (score>=60 && score<70){
System.out.println("C级");
}
else if (score>=0 && score<60){
System.out.println("不及格");
}
else{
System.out.println("成绩不合法");
}
scanner.close();
}
}
图示:
可以在if、else if、else里面嵌套if等,快速提高查找搜索效率
if(布尔表达式1){
if(布尔表达式2){
......
}
}
switch case 语句判断一个变量与一系列值中某个值是否相等,每个值称为一个分支。
switch语句中的变量类型可以是:
语句示例:
package com.yue.struct;
public class SwitchSt {
public static void main(String[] args) {
// switch可以匹配一个具体的值
char grade = ‘C‘;
// 以下反编译,可以发现源码是通过哈希值进行比较的
switch (grade){
case ‘A‘:
System.out.println("优秀");
break; // 必要加,如果不加break语句会继续输出之后的项
case ‘B‘:
System.out.println("良好");
break;
case ‘C‘:
System.out.println("及格");
break;
case ‘D‘:
System.out.println("差");
break;
default:
System.out.println("未知等级");
}
}
}
当while中的布尔表达式为true,循环会一直执行下去,可以使表达式失效来结束循环,少部分(比如服务器的请求响应监听等)循环需要一直执行,循环条件一直为true泽会出现死循环
package com.yue.struct;
public class WhileSt {
public static void main(String[] args) {
// 死循环
while(true){
/*
等待客户端连接
定时检查
......
*/
}
int i = 0;
int sum = 0;
// 求1+...+100
while(i <= 100){
sum = sum + i;
i++;
}
}
}
do...while语句是先执行语句后判断,while语句是先判断再执行语句,要区别清楚!
package com.yue.struct;
public class WhileSt {
public static void main(String[] args) {
int i = 0;
int sum = 0;
// 求1+...+100
do{
sum = sum + i;
i++;
} while(i <= 100); // 注意这里的分号不能漏掉
}
}
虽然所有循环都可以用while或者do...while来表示,但Java提供了另一种语句——for循环,为了使一些循环结构变得简单
for循环次数在执行前就确定
for循环语句是支持迭代的一种通用结构,是最有效、最灵活的循环结构
语句示例:
package com.yue.struct;
public class ForDemo {
public static void main(String[] args) {
// 死循环
for( ; ; ){
}
int a = 1; // 初始化条件
while(a<=100){ // 条件判断
System.out.println(a); // 循环体
a+=2; // 迭代
}
System.out.println("while循环结束!");
System.out.println("=============");
// 初始化;条件判断;迭代
for (int i = 1;i<=100;i++){
System.out.println(i);
}
System.out.println("for循环结束");
}
}
最先执行初始化步骤,可以声明一种类型,但可初始化一个或多个循环控制变量,也可以是空语句。然后,检测布尔表达式的值。如果为true,循环体被执行。如果为false,循环终止,开始执行循环体后的语句,执行一次循环后,更新循环控制变量(迭代因子控制循环变量的增减),再次检测布尔表达式。循环执行上面的过程
IDEA快捷生成语句,例如9.for,可以生成for循环,条件判断为<9
练习:
package com.yue.struct;
public class ForDemo {
public static void main(String[] args) {
// 练习1:计算0到100之间的奇数和偶数的和
int oddSum = 0;
int evenSum = 0;
for(int i=0;i<=100;i++) { //这里为什么小于等于100,值得深思
if (i % 2 != 0) {
oddSum += i;
}else {
evenSum += i;
}
}
System.out.println("奇数和为" + oddSum);
System.out.println("偶数和为" + evenSum);
// 练习2:用while或for循环输出1-1000之间能被5整除的数,并且每行输出三个
for (int i = 0;i <= 1000;i++){
if (i%5==0){
System.out.print(i+"\t"); //三个一行隔开
}
if (i%(5*3)==0){
System.out.println(); //换行
// 或者System.out.print("\n");
// 注意区别,println:输出完会换行;print:输出完不会换行
}
}
// 练习3:打印九九乘法表,先打印第一行,再打印接下来几行,最后调整样式
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();
}
}
}
注意,需要横向打印的时候一定不要使用println!!!
Java5引入了一种主要用于数组或集合的增强型for循环,格式如下:
for(声明语句 : 表达式)
{
// 代码句子
}
声明语句:声明新的局部变量,该变量的类型必须和数组元素的类型匹配。其作用域限定在循环语句块,其值与此时数组元素的值相等
表达式:表达式是要访问的数组名,或者是返回值为数组的方法
在任何循环语句的主体部分,均可用break控制循环的流程
package com.yue.struct;
public class BreakDemo {
public static void main(String[] args) {
int i = 0;
while (i<100){
i++;
System.out.println(i);
if (i==30){
break;
}
}
System.out.println("123");
}
}
在循环语句语句中用于终止某一次的循环,即跳过循环体中尚未执行的语句,接着进行下一次是否执行循环的判定
package com.yue.struct;
public class ContinueDemo {
public static void main(String[] args) {
int i = 0;
while (i<100){
i++;
if (i%10==0){
System.out.println();
continue;
}
System.out.println(i);
}
}
}
goto关键字很早就在程序设计语言中出现。尽管goto仍是Java的一个保留字,但并未在语言中得到正式使用;Java没有goto。然而,在break和continue上可以看出goto的影子,带标签的break和continue
“标签”是指后面跟一个冒号的标识符,例如:label:,对于Java来说唯一用到标签的地方是在循环语句之前。而在循环之前设置标签的唯一理由是:我们希望在其中嵌套另一个循环,由于break和continue关键字通常只中断当前循环,但若随同标签使用,它们就会中断到存在标签的地方。
比较麻烦,不建议使用
示例:
package com.yue.struct;
public class LabelDemo {
public static void main(String[] args) {
int count = 0;
outer:for (int i = 101;i<150;i++){
for (int j = 2;j<i/2;j++){
if (i % j == 0){
continue outer;
}
}
System.out.print(i + " ");
}
}
}
package com.yue.struct;
public class TestDemo {
public static void main(String[] args) {
for (int i = 1; i <= 5; i++) {
for (int j = 5; j >= i; j--) {
System.out.print(" ");
}
for (int j = 1; j <= i; j++) {
System.out.print("*");
}
for (int j = 1; j < i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
使用IDEA的debug(左上角的小虫子图标)可以观看一步步的打印输出
原文:https://www.cnblogs.com/czy2642168812/p/14470828.html