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);
}
}
}
版权声明:本文为qq_45885219原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。