在同一行输入 String 和 int

Input String and int in the same line

如何在同一行输入 Stringint?然后我想继续它以从我已经输入的 int 中获取最大的数字: 这是我到目前为止编写的代码。

import java.util.Scanner;

public class NamaNilaiMaksimum {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String name[] = new String[6];
        int number[] = new int[6];
        int max = 0, largest = 0;
        int as = 5;

        for (int x = 1; x <= as; x++) {
            System.out.print(" Name & number : ");
            name[x] = in.nextLine();
            number[x] = in.nextInt();
        }

        for (int x = 1; x <= as; x++) {
            if (number[x] > largest) {
                largest = number[x];
            }
        }
        System.out.println("Result = " + largest);
    }
}

我输入别人的名字和号码时出错。

我希望输出是这样的

Name & Number : John 45
Name & Number : Paul 30
Name & Number : Andy 25

Result: John 45

public static void main(String[] args) {
    Scanner in = new Scanner(System.in);
    String InputValue;
    String name[] = new String[6];
    int number[] = new int[6];
    String LargeName = "";
    int largest = 0;
    int as = 5;

    for (int x = 1; x <= as; x++) {
        System.out.print(" Name & number : ");
        InputValue = in.nextLine();
        String[] Value = InputValue.split(" ");
        name[x] = Value[0];
        number[x] = Integer.parseInt(Value[1]);
    }

    for (int x = 1; x < number.length; x++) {
        if (number[x] > largest) {
            largest = number[x];
            LargeName = name[x];
        }
    }
    System.out.println("Result = " + LargeName + " " + largest);
}

希望这对你有用。

System.out.print(" Name & number : ");
/*
    Get the input value "name and age" separated with space " " and splite it.
    1st part is name and second part is the age as tring format!
*/
String[] Value = in.nextLine().split(" ");
name[x] = Value[0];
// Convert age with string format to int.
number[x] = Integer.parseInt(Value[1]);