Ad
  • Default User Avatar

    You start by cubing every number (n * n * n). Then add the numbers together IF they are odd numbers. Then return the sum of the odd numbers.

    so if your numbers are A, B and C:

    (A * A * A) = odd1
    (B * B * B) = even
    (C * C * C) = odd2

    Answer would be odd1 + odd2.

    Sorry if I've confused things further

  • Custom User Avatar

    You will sum the odd cubed numbers, as it says in the title.