Ask 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 format. 1 42769 38812 7 8 9 10

+2
Answers (1)
  1. 30 September, 02:32
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers