program for IF - else condition Get link Facebook X Pinterest Email Other Apps - July 08, 2019 public class IfElseExample { public static void main(String[] args) { int number=13; if(number%2==0) { System.out.println("even number"); } else { System.out.println("odd number"); } } } Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment