gpt4 book ai didi

java - 过滤掉数字Java

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:37:13 26 4
gpt4 key购买 nike

我迷路了,所以

public class Filter {
public static void main(String[] args) {

// read in two command-line arguments
int a = Integer.parseInt(args[0]);
int b = Integer.parseInt(args[1]);

// repeat as long as there's more input to read in
while (!StdIn.isEmpty()) {

// read in the next integer
int t = StdIn.readInt();


if (????) {
StdOut.print(t + " ");
}
}
StdOut.println();
} }

这个程序应该读入两个整数并使用它们来过滤掉 StdIn。流,例如,如果参数是 2,3 和 StdIn 5 7 8 9 10 4 6,那么它应该打印出 8 9 10,(跳过前 2 个并打印下一个 3)

最佳答案

为什么不添加一个计数器来知道你在哪个号码?

int i = 0;    
while (!StdIn.isEmpty()) {
i++;
// read in the next integer
int t = StdIn.readInt();


if ( i > a && i <= a + b) {
StdOut.print(t + " ");
}
}

关于java - 过滤掉数字Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39901949/

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