Ask Question
10 April, 05:12

Given that the array monthSales of integers has already been declared and that its elements contain sales data for the 12 months of the year in order (i. e., January, February, etc.), write a statement that writes to standard output the element corresponding to October. Do not write anything else out to standard output.

+1
Answers (1)
  1. 10 April, 09:07
    0
    System. out. println ("October is the "+monthSales[9]+"th Month of the year");

    A complete Java program is given in the explanation section.

    Explanation:

    public class num4 {

    public static void main (String[] args) {

    int [] monthSales = new int[12];

    int i=0;

    for (i = 0; i
    monthSales[i] = i+1;

    }

    System. out. println ("October is the "+monthSales[9]+"th Month of the year");

    }

    }

    In the code above, we created an an array of size 12 with this statement

    int [] monthSales = new int[12];

    using the for loop, the numbers 0-12 are added to the array corresponding to the twelve months in the year

    The statement System. out. println ("October is the "+monthSales[9]+"th Month of the year"); outputs the corresponding number to October
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Given that the array monthSales of integers has already been declared and that its elements contain sales data for the 12 months of the ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers