public class problem1 {
public static void main(String args [])
{
int [] a = new int [1000];
for (int counter = 0; counter<=a.length;counter++);
{
if ((counter % 3 == 0) || (counter % 5 == 0))
{
int temp += counter;
}
}
}
}
我正在尝试解决一个方程式,您必须通过一个包含数字 1-1000 的数组,并将所有 3 和 5 的倍数的数字相加,但我的代码不会执行。谁能看到我的错误?