Computer Science, asked by mansoorali812342, 22 days ago

write the array declaration to store so element of data type int ​

Answers

Answered by diyagajera96
0

Answer:

To use an array you have to declare it. int array[] = new int [19]; If you want 19 numbers, then use an array with 19 elements. If you want to add consecutive numbers you can use a SIMPLE for loop and to see them on the screen you can just iterate your array.

Explanation:

Hope it helps

PLEASE MARK AS BRAINLIEST

Answered by bikshampuram1988
0

Explanation:

To use an array you have to declare it. int array[] = new int [19]; If you want 19 numbers, then use an array with 19 elements. If you want to add consecutive numbers you can use a SIMPLE for loop and to see them on the screen you can just iterate your array.

Similar questions