gpt4 book ai didi

java - 在java中读取输入

转载 作者:行者123 更新时间:2023-12-02 00:38:23 25 4
gpt4 key购买 nike

import java.io.*;
public class inputting {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println("number??");
String str;
int i=0;
while (i<5) {
str=br.readLine();
int n = Integer.parseInt(str);
System.out.println(n);
i++;}
}

}

如果我想读取 5 个整数,我该怎么做?我需要编写什么额外的代码?

最佳答案

您应该始终使用 Java 扫描器来读取输入。

对于您现有的代码,假设String str = br.readLine();使str包含至少一个整数的行,例如。 “10 20 30 40 50”

您需要做的是:

Scanner sc = new Scanner(str);
While (sc.hasNext())
{
System.out.println(sc.nextInt());
// ...or assign it to an array elment...your choice!
}

关于java - 在java中读取输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7101453/

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