题解 | #数字颠倒#

数字颠倒

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));
                }
            }
        }
}
全部评论

相关推荐

10-30 16:31
重庆大学 Java
代码飞升_不回私信人...:你说你善于学习,大家都会说。你说你是985,985会替你表达一切
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务