题解 | #数字颠倒#
数字颠倒
http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
直接反向打印就可以
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc= new Scanner(System.in);
while (sc.hasNextLine()) {
String str = sc.nextLine();
int length = str.length();
for (int i = length -1; i >=0; i--) {
System.out.print(str.charAt(i));
}
}
}
}
