Question: Looping Exercises(Java) Looping Exercises Exercise 1: Write some code to print the elements of an array Create an array, called printArr Input values into your

Looping Exercises(Java)
Looping Exercises Exercise 1: Write some code to print the elements of an array Create an array, called printArr Input values into your array Create a for loop In the for loop, print each value of the array using the iterating variable you created some code to square each elements of an Create an integer array, called sqArr Input values into your array Create a while loop In the while loop, square each element in the array and store them back into your array *Print each element of your array Exercise 2: Write some code to filter even values from your array Create an integer array, called arrl Create another integer array, evenArr Input values into arri Create a for loop In the for loop, write an if statement to filter even values out of arrl (You wrote the code to find even values before) *Print the values in evenArr to check your solution
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
