• 大小: 2.86KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签:

资源简介

C++实战源码-上帝创世的秘密(入门级实例052).zip

资源截图

代码片段和文件信息

// Perfection.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
int main()
{
printf(“╔═════════════════╗\n“);
printf(“║      输出1000以内的所有完数      ║\n“);
printf(“╚═════════════════╝\n“);
int num=2;
do
{
int sum=0i=1;
while (i {
if (num % i == 0)
{
sum += i;
}
i++;
}
if(num == sum)
{
printf(“ %d的因子是:“num);
int j=1;
while (j {
if (num % j == 0)
{
printf(“%d“j);
}
j++;
}
printf(“\n“);
}
num++;
} while (num < 1001);
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         654  2010-08-20 14:36  Perfection\Perfection.cpp
     文件        4584  2010-08-09 15:43  Perfection\Perfection.dsp
     文件         545  2010-08-09 15:43  Perfection\Perfection.dsw
     文件         297  2010-08-09 15:43  Perfection\StdAfx.cpp
     文件         769  2010-08-09 15:43  Perfection\StdAfx.h

评论

共有 条评论