题目描述
一个数如果恰好等于不包含它本身所有因子之和,这个数就称为"完数"。 例如,6的因子为1、2、3,而6=1+2+3,因此6是"完数"。 编程序找出N之内的所有完数,并按下面格式输出其因子
输入输出格式
输入:N
输出:? its factors are ? ? ?
输入输出样例
输入:1000
输出:
6 its factors are 1 2 3 28 its factors are 1 2 4 7 14 496 its factors are 1 2 4 8 16 31 62 124 248
C语言代码:
#include<stdio.h>
int main()
{
int a,b,c[100]={},k;
scanf("%d", &a);
for(int i=1;i<=a;i++)
{
b=0,k=0;
for(int j=1;j<i;j++)
{
if(i%j==0)
{
b+=j;
c[k]=j;
k++;
}
}
if(b==i){
printf("%d its factors are ",i);
for(int j=0;j<k;j++)
{
printf("%d ",c[j]);
}
putchar(10);
}
}
return 0;
}