作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我如何让java运行这些数字:
7, -15, 85, 100, 29, 16, 5, 12, 90, 150, -4, 17, 30, 55, 2
在我的 while-if 语句中?我希望这些数字代替变量“数字”。
int count = 0;
while (count < 15) {
if (number > 25)
{
count++;
total++;
addTotal = (addTotal + number);
}
else
count++
我最终试图计算出所有大于 25 的数字的平均值。
最佳答案
将它们放入数组中:
int[] numbers = {7, -15, 85, 100, 29, 16, 5, 12, 90, 150, -4, 17, 30, 55, 2};
然后使用 for 循环进行迭代(...除非需要“使用 while”...)
numberOfNumbersGreater25 = 0;
sum = 0;
for (int number:numbers) {
if (number > 25) {
sum += number;
numberOfNumbersGreater25++;
}
关于java - 如何在 while-if 语句中使用单个变量遍历一组数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9868462/
我是一名优秀的程序员,十分优秀!