题解 | #完全数计算#

完全数计算

https://www.nowcoder.com/practice/7299c12e6abb437c87ad3e712383ff84

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNextInt()) {
            int n = sc.nextInt();
            int count = 0;
            for (int i = 2; i <= n; i++) {
                int temp = 0;
                for (int j = 1; j <= (int)Math.sqrt(i); j++) {
                    if (i % j == 0) {
                        if (j * j == i || j == 1) {
                            temp = temp + j;
                        } else {
                            temp = temp + j + i / j;
                        }
                    }
                }
                if (i == temp) {
                    count++;
                }
            }
            System.out.println(count);
        }
    }
}

全部评论

相关推荐

11-02 09:49
已编辑
货拉拉_测试(实习员工)
热爱生活的仰泳鲈鱼求你们别卷了:没事楼主,有反转查看图片
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务