Scanner类的基本用法

本文介绍了Java中Scanner类的用法,包括如何处理单行和多行输入。在多行输入中,首先要注意使用nextInt等方法后,需要使用换行才能进行nextLine操作。示例包括:1) 多行输入,第一行指定后续行数;2) 单行输入多个参数,以空格分隔;3) 多行输入,每行参数个数不定,根据首行参数确定行数。
摘要由CSDN通过智能技术生成

Scanner的用法:单行/多行的输入

特别注意:如果前面使用sc.nextInt()或者sc.nextLong()等这一类的获取数据,后面如果想使用sc.nextLine()获取数据必须使用换行
比如,

// 输入如下,第一行的数字代表下面的行数
2
101 2 3 
4B 12 13

下面这种写法是错误的,因为没使用换行不管第一行的数据使用sc.nextInt()的方式是否获取完,下面想使用sc.nextLine()必须加换行

public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        while(sc.hasNextLine()){
            int num=sc.nextInt();
            for(int i=0;i<num;i++){
                String str=sc.nextLine();
                long sum=0;
                String[] arr=str.split(" ");
                for(int j=1;j<arr.length;j++){
                    long tem=Long.parseLong(arr[0],Integer.parseInt(arr[j]));
                    sum=(sum+tem%10)%10;
                }
                if(sum==0){
                    System.out.println(0);
                }else{
                    if(sum%2==0){
                        System.out.println(0);
                    }else{
                        System.out.println(1);
                    }
                }
            }
        }
    }

正确写法如下

public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        while(sc.hasNextLine()){
            int num=sc.nextInt();
            sc.nextLine();
            for(int i=0;i<num;i++){
                String str=sc.nextLine();
                long sum=0;
                String[] arr=str.split(" ");
                for(int j=1;j<arr.length;j++){
                    long tem=Long.parseLong(arr[0],Integer.parseInt(arr[j]));
                    sum=(sum+tem%10)%10;
                }
                if(sum==0){
                    System.out.println(0);
                }else{
                    if(sum%2==0){
                        System.out.println(0);
                    }else{
                        System.out.println(1);
                    }
                }
            }
        }
    }

1、多行输入元素,其中第一行几个数字表示下面几行的个数

以三行输入为例,第一行输入两个数字m,n,分别表示数组num1和num2的长度第二行和第三行输入num1和num2的元素,以空格分隔

// 输入如下
3 4
10 2 3 
11 4 5 6

程序如下:

import java.util.Arrays;
import java.util.Scanner;

public class myScanner {
	Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		System.out.println("输入:");
		Scanner sc = new Scanner(System.in);
		int m = sc.nextInt();
		int n = sc.nextInt();
		int[] num1 = new int[m];
		int[] num2 = new int[n];
		// 换成其他数据类型也一样,其他数值类型就修改int跟nextInt就可以了,
		//String就把nextInt()换成next()
		for(int i = 0; i < m; i ++) {
			num1[i] = sc.nextInt();  // 一个一个读取
		}
		for(int i = 0; i < n; i ++) {
			num2[i] = sc.nextInt();
		}
		System.out.println("输出:");
		System.out.println(Arrays.toString(num1));
		System.out.println(Arrays.toString(num2));
	}
}

2、单行输入多个参数

以空格(也可用其他的符号,不重要)为分割。

// 输入如下
ABB CCC DDD  EEE 123 435

程序如下:

import java.util.Arrays;
import java.util.Scanner;

public class myScanner {
	Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		System.out.println("输入:");
		Scanner sc = new Scanner(System.in);
		String str = sc.nextLine();  // 读取一行
		System.out.println("输出:");
		System.out.println(str);
		String[] strIn = str.trim().split(" ");  // 以空格分割
		System.out.println(Arrays.toString(strIn));
	}
}

3、多行输入多个参数,每行参数个数不定

这种情况下,或者可以从题干直接确定行数,或者能够从输入的第一行输入的某个参数确定下面还有几行。
以后者为例进行说明,假设第一行输入m,n,m表示后面有m行,n表示每行最多有n个(可用来截断某一行多输入的参数,不详细分析了)。

// 输入如下
3 4
AA bcd 123 54
AA BB
A B C

程序如下:

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class myScanner {
	Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		System.out.println("输入:");
		Scanner sc = new Scanner(System.in);
		int m = sc.nextInt();
		sc.nextLine();  // 很重要,跳到第二行
		// 若直接确定行数,注释掉上面两行,加入下面一行
		// int m = 3;
		String[] strArr = new String[m];
		// 从第二行开始读取
		for(int i = 0; i < m; i++) {
			strArr[i] = sc.nextLine();
		}
		System.out.println("输出:");
		System.out.println(Arrays.toString(strArr));
		ArrayList<String[]> strToOne = new ArrayList<String[]>();
		for(int i = 0; i < m; i ++) {
			String[] tmp = strArr[i].trim().split(" ");
			strToOne.add(tmp);
		}
		System.out.println(strToOne);
		// 形象点显示
		System.out.print("[");
		for(int i = 0; i < strToOne.size(); i++) {
			System.out.print(Arrays.toString(strToOne.get(i)));
			if(i != strToOne.size()-1)
				System.out.print(", ");
		}
		System.out.print("]");
	}
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值