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

资源简介

C++实战源码-求一个正整数的所有因子(入门级实例058).zip

资源截图

代码片段和文件信息

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

#include “stdafx.h“

int main()
{
int ij; //定义变量i,j为基本整型
printf(“请输入一个整数:\n“);
scanf(“%d“&i); //用scanf函数获得i的值
printf(“整数%d的因子如下:\n“i);
for(j=1;j {
if(i%j==0) //如果i对j取余的结果为0说明j是i的因子
{
printf(“%d“j); //将每次求出的因子输出
}
}
printf(“\n“);
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         471  2010-08-24 09:00  Gene\Gene.cpp
     文件        4512  2010-08-24 08:40  Gene\Gene.dsp
     文件         533  2010-08-24 08:40  Gene\Gene.dsw
     文件         291  2010-08-24 08:40  Gene\StdAfx.cpp
     文件         769  2010-08-24 08:40  Gene\StdAfx.h

评论

共有 条评论