题解 | #自守数#

自守数

http://www.nowcoder.com/practice/88ddd31618f04514ae3a689e83f3ab8e

例如:25^2 = 625,
76^2 = 5776,
9376^2 = 87909376。
观察自守数,发现 n在n*n的末尾
出现。所以可以用 n*n.endWith(“n”) 来判断是否是自守数
 import java.util.Scanner;

public class Main {
    public static void main(String[] args) {

    Scanner sc= new Scanner(System.in);
     while (sc.hasNext()){
         int cnt=0;
        int x=sc.nextInt();
         for (int i = 0; i <= x; i++) {
             if(isZS(i)){
                 cnt++;
             }
         }
         System.out.println(cnt);
     }

    }
    public  static boolean  isZS(int x){
        int sq=x*x;
        String str=String.valueOf(x);

        return String.valueOf(sq).endsWith(str);
    }
}


全部评论

相关推荐

喜欢吃蛋糕仰泳鲈鱼是我的神:字节可以找个hr 给你挂了,再放池子捞
点赞 评论 收藏
分享
威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
2 1 评论
分享
牛客网
牛客企业服务