1

我遇到的问题是,oddSum 输出的值与 evenSum 相同,并且所有元素的总和值为 0。

我不能完全看出我哪里出错了,因为循环非常相似,如果即使一个也可以工作,其他人也应该?

无论如何,这是我的代码:

int evenData[] = new int [10];
int oddData[] = new int [10];
int sum = 0;
int evenSum = 0;
int oddSum = 0;

int[] data = {3, 2, 5, 7, 9, 12, 97, 24, 54};
for(int index = 0; index < data.length; index++)
{
    if (data[index] % 2 == 0)
    {

        int temp = data[index];
        data[index] = evenData[index];
        evenData[index] = temp;

    }

    else
    {
        int temp = data[index];
        data[index] = oddData[index];
        oddData[index] = temp;
    }

}
for(int evenIndex = 0; evenIndex < evenData.length; evenIndex++)
{

    evenSum =evenData[evenIndex] + evenSum;

}
System.out.print("Sum of even elements: " + evenSum);

for(int oddIndex = 0; oddIndex < oddData.length; oddIndex++)
{

    oddSum = oddData[oddIndex] + oddSum;

}
System.out.print("Sum of odd elements: " + oddSum);

for(int index = 0; index < data.length; index++)
{
    sum = data[index] + sum;
}
System.out.print("Sum of all elements: " + sum);
4

2 回答 2

2

你得到相同的价值evenodd因为你正在打印相同的价值: -

System.out.print("Sum of odd elements: " + evenSum);

此外,您的最终总和是zero因为您将原始数组的所有元素制作为zero,因为您将元素与 和 中的元素交换evenDataoddData最初为零。

int temp = data[index];
data[index] = evenData[index]; // This code assigns a value 0 to current index.
evenData[index] = temp;

因此,您正在迭代您的数组,并分配0给您的每个索引,同时将前一个元素添加到new array.


我会说你不必要地使用了 2 个额外的数组和 3 个额外的循环。为什么不在迭代原始数组的地方创建一个总和?

事实上,你所有的总和都可以在一个循环中计算出来:-

for(int index = 0; index < data.length; index++)
{
    sum += data[index];

    if (data[index] % 2 == 0)
    {
        // int temp = data[index];
        // data[index] = evenData[index];
        // evenData[index] = temp;

        evenSum += data[index];
    }
    else
    {
        // int temp = data[index];
        // data[index] = oddData[index];
        // oddData[index] = temp;

        oddSum += data[index];  
    } 
}

System.out.println("Even Sum: "  + evenSum);
System.out.println("Odd Sum: "  + oddSum);
System.out.println("Total Sum: "  + sum);

因此,您不需要为evenodd数字创建额外的数组。

而且,您4 loops现在也已压缩为一个循环。

于 2012-11-20T20:27:49.300 回答
0
int temp = data[index]; 
data[index] = evenData[index]; 
evenData[index] = temp; 

查看上面的行,evenDate 为空,在第二行中,您将数据数组设置为空。您也在oddDate 行中重复同样的错误。

你为什么不使用只是尝试以下?

    for(int index = 0; index < data.length; index++)
    { 
        if (data[index] % 2 == 0) { 
            int temp = data[index]; 
            evenData[index] = temp;

        } else { 
            int temp = data[index]; 
            oddData[index] = temp; } 
        } 
    }

    for(int evenIndex = 0; evenIndex < evenData.length; evenIndex++) 
    { 
        //since length of all 3 data,even, odd arrays are the same
        //you can put both sum operation in one for loop

        evenSum = evenData[evenIndex] + evenSum; 
        oddSum = oddData[evenIndex] + oddSum; 
        sum = data[evenIndex] + sum;  
    }

    System.out.print("Sum of even elements: " + evenSum); 
    //you have put evenSum for below odeUm printing in ur code
    System.out.print("Sum of odd elements: " + oddSum); 
    System.out.print("Sum of all elements: " + sum); 
于 2012-11-20T20:46:25.363 回答