Question: solve Write a for loop to print all NUM_VALS elements of array hourlyTemp. Separate elements with a comma and space. Ex: If hourly Temp ={90,
solve
Write a for loop to print all NUM_VALS elements of array hourlyTemp. Separate elements with a comma and space. Ex: If hourly Temp ={90, 92, 94, 95), print: 90, 92, 94, 95 Your codes output should end with the last element, without a subsequent comma, space, or newline. Learn how our autograder works 6609 181308628.qx]zay7 public class PrintWithComma { public static void main (String args) { Scanner scor = new Scanner (System. in) ; final int NUM_VALS = 4; int[ ] hourlyTemp = new int [NUM_VALS] ; 8 int i; 10 for (i = 0; iStep by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
