//1. Declare an array arr1 and initialize it to 1, 2, 3, 4, 5, 6, 7, 8, and 9//2. Declare another array arr2, the same length as arr1, without// giving it any initial values.//3. Using a for loop print arr1 displaying all elements on one line,// separated by a comma. (Commas must be placed only between numbers.)//4. Using a while loop print arr2 displaying all elements on one// line, separated by a dash. (Dashes must be placed only between numbers.)//5. Using a for loop, copy all the values of arr1 into arr2 in reverse// order. DO NOT print on this step.//6. Using a do/while loop, print arr1 displaying all elements on// one line, separated by a comma.//7. Using a for loop, print arr2 displaying all elements on one line,// separated by a dash.
//1. Declare an array arr1 and initialize it to 1, 2, 3, 4, 5, 6, 7, 8, and 9
//2. Declare another array arr2, the same length as arr1, without
// giving it any initial values.
//3. Using a for loop print arr1 displaying all elements on one line,
// separated by a comma. (Commas must be placed only between numbers.)
//4. Using a while loop print arr2 displaying all elements on one
// line, separated by a dash. (Dashes must be placed only between numbers.)
//5. Using a for loop, copy all the values of arr1 into arr2 in reverse
// order. DO NOT print on this step.
//6. Using a do/while loop, print arr1 displaying all elements on
// one line, separated by a comma.
//7. Using a for loop, print arr2 displaying all elements on one line,
// separated by a dash.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 4 images