Question: What am I doing wrong? Given positive integer numinsects, write a while loop that prints that number doubled without reaching 200. Follow each number with
What am I doing wrong?

Given positive integer numinsects, write a while loop that prints that number doubled without reaching 200. Follow each number with a space. After the loop, print a newline. Ex: If numinsects = 16, print: 16 32 64 128 1 tes: cassed 4. A tesis pussed 1 import java.util.Scanner; 2 3 public class InsectGrowth { public static void main (String [] args) { 5 5 Scanner scnr = new Scanner(System.in); 6 int numInsects; 7 8 numInsects - scnr.nextInt(); // Must be >= 1 9 10 num_insects = int(input) () 11 12 while(numInsects
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
