题解 | #完全数计算#

完全数计算

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);
        }
    }
}

全部评论

相关推荐

牛客410815733号:这是什么电影查看图片
点赞 评论 收藏
分享
10-11 17:30
湖南大学 C++
我已成为0offer的糕手:羡慕
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务