gpt4 book ai didi

java - 如何在不包含 i 的情况下打印 i 和 b 之间的数字

转载 作者:行者123 更新时间:2023-12-04 08:48:03 25 4
gpt4 key购买 nike

如果第一个数字是 6,第二个数字是 16,它会打印 6,7,8,9,10,11,12,13,14,15;我不想打印“6”,我应该添加什么语句,因为我不想把它们放在一个数组中,删除 6 并重新发送它

System.out.println("enter a number : ");
int i = input.nextInt();
System.out.println("enter another number : ");
int b = input.nextInt();

while (i >= 0 && i<b)
System.out.println(i++);

最佳答案

使用 for loop像这样:

    System.out.println("enter a number : ");
int i = input.nextInt();
System.out.println("enter another number : ");
int b = input.nextInt();

for(int j = i+1; j <= b; j++){
System.out.println(j);
}
当您输入 1 16它产生:
6
7
8
9
10
11
12
13
14
15

关于java - 如何在不包含 i 的情况下打印 i 和 b 之间的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64215724/

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