题解 | #回文对称数#

回文对称数

http://www.nowcoder.com/practice/5b143af8328f4e42adf5e10397ae44ef

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for (int i = 1; i <= n; i++) {
            // 判断是否为回文数
            String s = String.valueOf(i);
            String result = "";
            for (int j = s.length() - 1; j >= 0; j--) {
                result += s.charAt(j);
            }
            if (result.equals(s)) {
                System.out.println(i);
            }
        }
    }
}
全部评论

相关推荐

喜欢吃蛋糕仰泳鲈鱼是我的神:字节可以找个hr 给你挂了,再放池子捞
点赞 评论 收藏
分享
3 1 评论
分享
牛客网
牛客企业服务