Quick actions

cmd+k|ctrl+k

Navigation

Languages

java-loop3

Snippet info

Language

Java

Visibility

public

Author

w3xue

Created

2023-01-06T07:42:21.759601Z

Updated

2023-01-06T07:42:21.759601Z

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