gpt4 book ai didi

java - 我正在生成一系列用空格分隔的数字,但我想删除末尾的空格

转载 作者:行者123 更新时间:2023-12-02 09:36:35 24 4
gpt4 key购买 nike

我正在使用 for 循环生成一系列数字,以空格分隔,但我想最后删除尾随空格。无法使用 trim() 进行输出。

 import java.util.*;
public class Main {
public static void main(String [] args){
Scanner s = new Scanner(System.in);
int str = s.nextInt();

for(int i=1; i<=str; i++) {
System.out.printf("%d", i);
System.out.print(" ");
}
}
}

1 2 3 4 5(此处空格)

但我想要输出 5 后没有空格。

最佳答案

int i;
for(i = 1; i < str.length(); i++) {
System.out.print(i + " ");
}
System.out.println(i);

关于java - 我正在生成一系列用空格分隔的数字,但我想删除末尾的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57460133/

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