write a code in java to explain the while loop in


Write a code in java to explain the while loop in Java?

// This is the Hello program in Java

class Hello {

public static void main (String args[]) {

System.out.print("Hello "); // Say Hello
int i = 0; // Declare and initialize loop counter
while (i < args.length) { // Test and Loop
System.out.print(args[i]);
System.out.print(" ");
i = i + 1; // Increment Loop Counter
}
System.out.println(); // Finish the line
}

}

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: write a code in java to explain the while loop in
Reference No:- TGS0284377

Expected delivery within 24 Hours