我正在使用 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 之后没有空格的输出。
偶然的你
拉莫斯之舞
函数式编程
相关分类