Advertisement
heysoul_sisypus

modulus

Jan 25th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. public class MAmamo {
  2.  
  3.     /**
  4.      * @param args the command line arguments
  5.      */
  6.     public static void main(String[] args) {
  7.      Scanner scan=new Scanner (System.in);
  8.      System.out.print("First num: ");
  9.      int num=scan.nextInt();
  10.      int r=num%2;
  11.      if(r==0){
  12.      System.out.println("even");
  13.      }
  14.      else {System.out.println("odd");}
  15.     }
  16.    
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement