- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编写一个 isEven 方法,使用余数运算符 (%) 来确定整数是否为偶数。该方法应该接受一个整数数组参数,确定数组元素的值是否为偶数,然后打印该值。使用 for 循环遍历数组。将此方法合并到传递数组的应用程序中,inn NUMS[] { 8,16,9,52,3,15,27,6,14,25,2,10}
我已经尝试解决这个问题有一段时间了,但我被困住了,这就是我到目前为止所遇到的
public class IsEven
{
public static void main( String[] args )
{
int[] nums = {8, 16, 9, 52, 3, 15, 27, 6, 14, 25, 2, 10 };
System.out.printf( "%s%11s\n", "Number", "Even" ); // column heading
for ( int counter = 0; counter < nums.length; counter++ )
{
if ( IsEven( nums ) )
System.out.printf( "Even numbers are = %d\n", nums );
}
}
public boolean isEven( int even )
{
return even % 2 == 0;
}
}
我可以寻求帮助吗?
最佳答案
换行
if ( IsEven( nums ) )
到
if ( IsEven( nums[counter] ) )
关于java - IsEven Java 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20636627/
这里有点不对劲...... public class evenness { public static Boolean isEven (Integer i) { return
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve th
如果你打开int.dart类源码,你会发现isEven是这样写的: /** Returns true if and only if this integer is even. */ bool get
我正在做 Codecademy 练习: Remember the functions isOdd and isEven from Exercise 3.4? We'd like you to code
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 8 年前。 Improve
我是一名优秀的程序员,十分优秀!