Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class LastDigit {
- public static void main(String[] args) {
- Scanner sc = new Scanner(System.in);
- int num = Integer.parseInt(sc.nextLine());
- int lastDigit = FindLastDigit(num);
- switch (lastDigit) {
- case 1:
- System.out.println("one");
- break;
- case 2:
- System.out.println("two");
- break;
- case 3:
- System.out.println("three");
- break;
- case 4:
- System.out.println("four");
- break;
- case 5:
- System.out.println("five");
- break;
- case 6:
- System.out.println("six");
- break;
- case 7:
- System.out.println("seven");
- break;
- case 8:
- System.out.println("eight");
- break;
- case 9:
- System.out.println("nine");
- break;
- default:
- System.out.println("zero");
- }
- }
- private static int FindLastDigit(int num) {
- return Math.abs(num % 10);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement