题解 | #数字颠倒#
数字颠倒
http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
使用 StringBuffer 的 reverse()
import java.util.*;
/**
* @author lc
* @version 1.0.0
* @ClassName HW11.java
* @Description 数字颠倒
* @createTime 2022年01月19日 11:51:00
*/
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
while (scan.hasNextInt()) {
int number = scan.nextInt();
System.out.println(new StringBuffer(String.valueOf(number)).reverse());
}
}
}