/* PC2.2 Using an enhanced for loop, write a java code to find the total of the elements in the array numbers. */ int[]
Posted: Mon Jun 06, 2022 12:39 pm
/* PC2.2 Using an enhanced for loop, write a java code to find the total of the elements in the array numbers. */ int[] numbers = {3, 4, 5, -5, 0, 12); /*PC2.3 Rewrite the code form PC2.2 twice, using a while loop and using a for loop */ //Using While loop //Using for loop