Question: Given an int variable n that has already been declared and initialized to a positive value, use a while loop to print a single line
Given an int variable n that has already been declared and initialized to a positive value, use a while loop to print a single line consisting of n asterisks. Use no variables other than n. (This is a java class, the code that was attempted is shown in the photo and does not work. The errors given are also shown in the other photo. Any help would be great)


Instructions Given an int variable n that has already been declared and initialized to a positive value, use a while loop to print a single line consisting of n asterisks. Use no variables other than n. Submit History: 0) { System.out.println("*"); n--; } 4 5 CodeLab Analysis: Logical Error(s) In some test cases: stdout is not correct Your Submission Start Debugger 1 2 3 4 5 while (n > 0) 1 System.out.println("*"); n--; } Test Case Table Test Casen stdout Feedback stdout is not correct * * #2 #3 2 12 stdout is not correct
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
