Answers for "Example of an IF..ELSE Statement"

0

Example of an IF..ELSE Statement

public class Test {

   public static void main(String args[]) {
      int x = 30;

      if( x < 20 ) {
         System.out.print("This is if statement");
      }else {
         System.out.print("This is else statement");
      }
   }
}
Posted by: Guest on August-31-2021

Browse Popular Code Answers by Language