作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在试图找出这个问题的答案有什么问题。真的需要帮助!任何帮助表示赞赏!谢谢
问题
a<b
.a>b
,程序将从 b 打印到 a。如果 b is the same as a
,程序会要求用户输入另一个数字b,直到它不等于a。
Scanner sc = new Scanner(System.in);
System.out.println("Enter a: ");
int a = sc.nextInt();
System.out.println("Enter b: ");
int b = sc.nextInt();
if(a > b) {
for(int i = b; b >= a; b--) {
System.out.println(b);
}
} else if (a < b) {
for(int i = a; a <= b; a++) {
System.out.println(i);
}
} else {
System.out.println("Enter another number b: ");
int numberb = sc.nextInt();
}
}
最佳答案
我对您当前的尝试进行了一些更正,这离实用不远了。首先,我使用循环不断提示用户输入 b
数字,直到 a
不等于 b
。有了不同的 a
和 b
,然后我执行一个循环来打印从小到大的数字范围,包括两端。
Scanner sc = new Scanner(System.in);
System.out.println("Enter a: ");
int a = sc.nextInt();
int b;
do {
System.out.println("Enter b: ");
b = sc.nextInt();
} while (b == a);
for (int i=Math.min(a, b); i <= Math.max(a,b); ++i) {
System.out.println(i);
}
关于JAVA - For循环和If else语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46708535/
我是一名优秀的程序员,十分优秀!