Quick actions

cmd+k|ctrl+k

Navigation

Languages

java-loop1

Snippet info

Language

Java

Visibility

public

Author

w3xue

Created

2023-01-06T07:39:44.968728Z

Updated

2023-01-06T07:39:44.968728Z

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