gpt4 book ai didi

java - 从一行读取整数

转载 作者:行者123 更新时间:2023-12-04 06:11:42 25 4
gpt4 key购买 nike

我试图在同一行读取两个整数。

Scanner a=new Scanner(System.in);
x=a.nextInt();
y=a.nextInt();

现在,如果我输入

3 4
3 4



x = 3 和 y = 3。我什至尝试使用 a.useDelimiter("\\s") 但它不起作用。

最佳答案

您的代码中的其他地方一定有错误。这对我来说可以。

import java.util.Scanner;

class Main
{
public static void main(String[] args)
{
Scanner a = new Scanner(System.in);
int x = a.nextInt();
int y = a.nextInt();
System.out.println("x = " + x + ", y = " + y);
}
}

输入:
3 4
3 4

输出:
x = 3, y = 4

在线查看它: ideone

关于java - 从一行读取整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7705357/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com