尝试将整数作为用户输入时出现 InputMismatch 错误

InputMismatch error trying to take integer as user input

我试图将一个整数作为用户输入并将其存储在列表中,直到用户点击 'q'。在用户输入 'q' 的那一刻,循环终止。

代码显示 InputMismatch 错误:

import java.util.*;

public class SampleArrayList {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s;
        int n;
        
        List<Integer> array = new ArrayList();
        
        while (true) {
            n = sc.nextInt();
            s = sc.nextLine();
            if (s.equals("q")) {
                break;
            } else {
                array.add(n);
            }
        }
        Collections.sort(array);
        System.out.println(array);
    }
}

您是否尝试像下面的示例那样实施它?

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

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s;

        List<Integer> array = new ArrayList();
        while (true) {
            s = sc.nextLine();
            if (s.equalsIgnoreCase("q")) {
                break;
            }
            int num = Integer.parseInt(s);
            array.add(num);
        }

        Collections.sort(array);
        System.out.println(array);
    }
}

看起来 q 正在尝试存储为 int,所以这应该有效:

所有存储为 String 的数字都可以使用 parseInt() 方法解析为 int

s = sc.nextLine();

if (!s.equals("q"))
{

    array.add(Integer.parseInt(s));
}
else
{
    break;
}

试试这个,

在 while 循环中获取字符串使用的输入,

s = sc.next(); 

而不是 sc.nextLine();