Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Melinda
- //11.4.15
- //ModuloDivision
- import java.util.Scanner;
- public class ModuloDivision
- {
- public static void main(String[] args)
- {
- Scanner input = new Scanner (System.in);
- System.out.println("Please choose a two digit number");
- int num = input.nextInt();
- int tens = num/10;
- int ones = num%10;
- System.out.println("The first digit is " +tens);
- System.out.println("The second digit is " +ones);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement