int sum = 0; for (int i = 1; i <= 99; i++) { if (i % 2 != 0) { sum += i * 3; } } System.out.println(sum); }