Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class MAmamo {
- /**
- * @param args the command line arguments
- */
- public static void main(String[] args) {
- Scanner scan=new Scanner (System.in);
- System.out.print("First num: ");
- int num=scan.nextInt();
- int r=num%2;
- if(r==0){
- System.out.println("even");
- }
- else {System.out.println("odd");}
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement