目录
(5) 从键盘输入数字,计算输入的总和与平均数(以输入非数值结束)
1、Scanner类
(1)使用next方法接收键盘数据
import java.util.Scanner;
//使用next方法接收键盘数据
public class ScannerDemo01 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("使用next方式接收:");
if (scanner.hasNext()) {
String str = scanner.next();
System.out.println("输出的内容为:" + str);
}
scanner.close();
}
}
(2)使用nextLine方法接收键盘数据
import java.util.Scanner;
//使用nextLine方法接收键盘数据
public class ScannerDemo02 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("使用nextLine方式接收:");
if (scanner.hasNextLine()) {
String str = scanner.nextLine();
System.out.println("输出的内容为:" + str);
}
scanner.close();
}
}
(3)不用if判断是否还有键盘输入也可以使用
import java.util.Scanner;
//不用if判断是否还有键盘输入也可以使用
public class ScannerDemo03 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("使用nextLine方式接收:");
String str = scanner.nextLine();
System.out.println("你输入的内容是:" + str);
scanner.close();
}
}
(4) 键盘输入一个整数和一个小数并输出
import java.util.Scanner;
//键盘输入一个整数和一个小数并输出
public class ScannerDemo04 {
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()) {
i = scanner.nextInt();
System.out.println("你输入的整数数据是:" + i);
} else {
System.out.println("你输入的不是整数数据");
}
System.out.println("请输入小数:");
if (scanner.hasNextFloat()) {
f = scanner.nextFloat();
System.out.println("你输入的小数是:" + f);
} else {
System.out.println("你输入的不是小数数据");
}
scanner.close();
}
}
(5) 从键盘输入数字,计算输入的总和与平均数(以输入非数值结束)
import java.util.Scanner;
//从键盘输入数字,计算输入的总和与平均数(以输入非数值结束)
public class ScannerDemo05 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
double sum = 0;//和
int m = 0;//个数
System.out.println("请输入数字:");
while (scanner.hasNextDouble()) {
double v = scanner.nextDouble();
sum += v;
m++;
System.out.println("你输入了第" + m + "个数据,当前数据总和为" + sum);
}
System.out.println(m+"个数的总和为:" + sum);
System.out.println(m+"个数的平均数为:" + (sum / m));
scanner.close();
}
}
2、条件执行
(1)if单选择结构
import java.util.Scanner;
//if(){}
public class IfDemo01 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入内容:");
String s = "Hello";
String line = scanner.nextLine();
if (line.equals(s)) {
System.out.println(line);
}
System.out.println("End");
scanner.close();
}
}
(2)if双选择结构
import java.util.Scanner;
//if...else
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("你的成绩不及格");
}
scanner.close();
}
}
(3)多选择结构
import java.util.Scanner;
//if ...else if... else...
public class IfDemo03 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入你的成绩:");
int score = scanner.nextInt();
if (score == 100) {
System.out.println("恭喜满分");
} else if (score >= 90 && score < 100) {
System.out.println("A等级");
} else if (score >= 80 && score < 90) {
System.out.println("B等级");
} else if (score >= 70 && score < 80) {
System.out.println("C等级");
} else if (score >= 60 && score < 70) {
System.out.println("E等级");
} else if (score < 60 && score >= 0) {
System.out.println("D等级");
} else {
System.out.println("你的输入有误");
}
scanner.close();
}
}
//if嵌套
public class IfDemo04 {
public static void main(String[] args) {
int a = 10;
int b = 20;
if (a == 10) {
if (b == 20) {
System.out.println("a=10 and b=20");
}
}
}
}
//switch
public class SwitchDemo01 {
public static void main(String[] args) {
char grade = 'D';
switch(grade){
case 'A':
System.out.println("优秀");
break;
case 'B':
System.out.println("良好");
break;
case 'C':
System.out.println("及格");
break;
case 'D':
System.out.println("挂科");
break;
default:
System.out.println("未知等级");
}
}
}
3、循环执行
(1)while
//while(){}
public class WhileDemo {
public static void main(String[] args) {
int i = 0;
//输出1~100
while (i < 100) {
i++;
System.out.println(i);
}
}
}
(2)do…while
//do{}while()
public class DoWhileDemo {
public static void main(String[] args) {
int i = 0;
do{
i++;
System.out.println(i);
}while (i<100);
}
}
//while 与 do... while
public class DoWhileDemo01 {
public static void main(String[] args) {
int i = 0;
while (i < 0) {
System.out.println(i);
i++;
}
do {
System.out.println(i);
i++;
} while (i < 0);
}
}
(3)for
//for循环
public class ForDemo01 {
public static void main(String[] args) {
int a = 1;
while (a <= 100) {
System.out.println(a);
a++;
}
System.out.println("---------------------");
for (int i = 1; i <= 100; i++) {
System.out.println(i);
}
}
}
(4) 增强for
//增强for循环
public class ForDemo02 {
public static void main(String[] args) {
int[] arr = {10, 20, 30, 40, 5//break
for (int x : arr) {
System.out.println(x);
}
System.out.println("----------------");
for (int i = 0; i < 5; i++) {
System.out.println(arr[i]);
}
}
}
4、循环控制
(1)break
//break
public class BreakDemo {
public static void main(String[] args) {
for (int i = 0; i < 100; i++) {
if (i > 30) {
break;
} else {
System.out.println(i);
}
}
System.out.println("程序顺序执行");
int a = 0;
while (a < 100) {
a++;
System.out.println(a);
if (a == 30) {
break;
}
}
System.out.println("程序顺序执行");
}
}
(2)continue
//continue
public class ContinueDemo {
public static void main(String[] args) {
for (int i = 0; i < 100; i++) {
if (i % 10 == 0) {
System.out.println();
continue;
} else {
System.out.print(i+" ");
}
}
}
}
版权声明:本文为weixin_46507947原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。