【Java】程序设计算法的输入处理

该文介绍了如何在Java程序中使用Scanner类来获取用户输入的整数、字符串以及一维列表。通过示例代码展示了nextInt()方法读取整数,next()方法读取到空格为止的字符串,以及.nextLine()方法读取整行包含空格的字符串。并提供了读取一维列表的实现方式。
摘要由CSDN通过智能技术生成

输入Int

import java.util.Scanner;
public class Testin {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        // 输入
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        // 测试输入结果
        System.out.println(a);
        System.out.println(b);
    }
}

测试1

2
1
2
1

测试2

1 2
1
2

输入字符串

import java.util.Scanner;
public class Testin {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String s1 = scanner.next();
        System.out.println(s1);
    }
}

测试1

hello
hello

测试2

hello world
hello

通过测试2可以看出scanner.next()输入字符串遇到空格就结束了。

输入一行字符串

import java.util.Scanner;

public class Testin {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String s1 = scanner.nextLine();
        String s2 = scanner.nextLine();
        System.out.println(s1);
        System.out.println(s2);
    }
}

测试1

hello world 123
123
hello world 123
123

scanner.nextLine()遇到空格不结束,可以输入包含空格的字符串。

输入一维列表

先输入list的大小,再输入list中的所有值

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Testin {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int count = scanner.nextInt();
        List<Integer> list = new ArrayList<>();
        for (int i = 0; i < count; i++) {
            list.add(scanner.nextInt());
        }
        System.out.println(list.toString());
    }
}

测试1

5
1 2 3 4 5
[1, 2, 3, 4, 5]

测试2

5
1
2
3
4
5
[1, 2, 3, 4, 5]

测试3

5
1 2 3
4 5
[1, 2, 3, 4, 5]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值