Quick actions

cmd+k|ctrl+k

Navigation

Languages

java-loop2

Snippet info

Language

Java

Visibility

public

Author

w3xue

Created

2023-01-06T07:40:32.338599Z

Updated

2023-01-06T07:41:44.31376Z

public class Test {
   public static void main(String args[]){
      int x = 10;
 
      do{
         System.out.print("value of x : " + x );
         x++;
         System.out.print("\n");
      }while( x < 20 );
   }
}
INFO