gpt4 book ai didi

java - 将用户输入的数字添加到扫描仪行中,直接添加到右侧而不是下面的行?

转载 作者:行者123 更新时间:2023-12-02 01:19:05 25 4
gpt4 key购买 nike

我在处理用户输入的号码时遇到问题。我试图将用户输入的数字添加到句子中冒号后面几个空格的位置,而不是下面的行。

Scanner inputHere = new Scanner(system.in);
System.out.println("I am trying to add the number a few spaces after the colon:");
String inputHereOne = inputHere.nextLine();

最佳答案

改变

System.out.println("I am trying to add the number a few spaces after the colon:");

不打印换行符 - 当您这样做时,您还应该flush()。就像,

System.out.print("I am trying to add the number a few spaces after the colon: ");
System.out.flush();

另外,您这里有一个拼写错误

new Scanner(system.in);

应该是

new Scanner(System.in);

关于java - 将用户输入的数字添加到扫描仪行中,直接添加到右侧而不是下面的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58046403/

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