Ask Question
26 May, 04:41

Write a Java program to declare and store numbers from 1 to 10 in a single dimensional array and

display the output in the following format. 1 42769 38812 7 8 9 10

+4
Answers (1)
  1. 26 May, 07:40
    0
    Class x {

    public static void main (String args[])

    {

    /*declaration, instantiation and initialization * /

    int a[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};

    }

    }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a Java program to declare and store numbers from 1 to 10 in a single dimensional array and display the output in the following ...” 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