Answers for "Java do-while loop"

3

while loop in java

public class WhileLoopDemo
{
   public static void main(String args[])
   {
      int a = 1;
      while(a < 10)
      {
         System.out.println(a);
         a++;
         System.out.print("\n");
      }
   }
}
Posted by: Guest on November-21-2020
0

Java do while loop example

//do-while loop  
int i=1;  
do{  
System.out.println(i);  
i++;  
}while(i<=10);
Posted by: Guest on July-14-2021
0

java while loop

int count = 1;while (count < 11) {    System.out.println("The count is " + count);    count++; // remember, this increases the value of count by 1}
Posted by: Guest on August-13-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language