Question: IN JAVA. please use the code in the program already CHALLENGE ACTIVITY : For loops. Jump to level 1 Write a for loop that prints
IN JAVA. please use the code in the program already

CHALLENGE ACTIVITY : For loops. Jump to level 1 Write a for loop that prints the numbers from firstNumber to 0. Ex: firstNumber = -3 outputs: -3 -2 -1 0 1 public class For Loops { public static void main (String [] args) { int firstNumber; int i; firstNumber = -3; for(/* Your solution goes here */) { System.out.print(i + " ")
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
