题解 | #自守数#

自守数

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

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        while (in.hasNextInt()) { 
            int cnt = 0;
            int a = in.nextInt();
            for(int i = 0; i<=a; i++){
                double p = Math.pow(i,2);
                String s = (int)p+"";
                String s1 = i+"";
                if(s1.equals(s.substring(s.length()-s1.length(),s.length()))){
                    cnt++;
                }
            }
            System.out.print(cnt);
        }
    }
}
全部评论

相关推荐

10-18 13:01
已编辑
西安理工大学 C++
小米内推大使:建议技能还是放上面吧,hr和技术面试官第一眼想看的应该是技能点和他们岗位是否匹配
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务