Back To Java Flow of Control Index
//program to demonstrate if statement example 5 , check whether number is greater than or equal to 10 public class ifexample5 { public static void main(String[] args) { int a; a=11; if(a>=10) { System.out.println("a is greater than or equal to 10"); } } }