0
public class CounterAndSorter
{
    public static void main (String[] args)
    {
        int counter = 1;
        int oddSum = 0;
        int evenSum = 0;

        while(counter <= 25)
        {
            if(counter % 2 > 0)
            {
                oddSum += counter;
            }
            else
            {
                evenSum += counter;
            }

            counter++;
        }

        System.out.println("The sum of the even integers is " + evenSum);
        System.out.println("The sum of the odd integers is " + oddSum);
    }
}   

私は最近Javaを開始し、100個のランダムな整数を生成するプログラムを作成し、それらを偶数と奇数にソートして配列を介して表示しようとしています。上記のコードをコンパイルできますが、実行できません。Out Of Bounds Exception を頻繁に受け取ります。どんな助けでも大歓迎です。

4

0 に答える 0