Java—逆置正整数

Java—逆置正整数

Description
输入一个三位正整数,将它反向输出。
Input
3位正整数。
Output
逆置后的正整数。
Sample
Input
123
Output
321
Hint
注意130逆置后是31

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner reader = new Scanner(System.in);
		int a, b, c, y;
		y = reader.nextInt();
		a = y / 100;
		b = y / 10 % 10;
		c = y % 10;
		;
		if (c != 0) {
			System.out.print(c * 100 + b * 10 + a);
		} else {
			System.out.print(b * 10 + a);
		}

	}

}

你可能感兴趣的:(Java—逆置正整数)