C 语言实例 - 求一个整数的所有因数
C 语言教程
· 2019-02-20 21:13:07
假如a*b=c(a、b、c都是整数),那么我们称a和b就是c的因数。
实例
#include <stdio.h>
int main()
{
int number, i;
printf("输入一个整数: ");
scanf("%d",&number);
printf("%d 的因数有: ", number);
for(i=1; i <= number; ++i)
{
if (number%i == 0)
{
printf("%d ",i);
}
}
return 0;
}
运行结果:
输入一个整数: 60 60 的因数有: 1 2 3 4 5 6 10 12 15 20 30 60
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Flexible Rails
Peter Armstrong / Manning Publications / 2008-01-23 / USD 44.99
Rails is a fantastic tool for web application development, but its Ajax-driven interfaces stop short of the richness you gain with a tool like Adobe Flex. Simply put, Flex is the most productive way t......一起来看看 《Flexible Rails》 这本书的介绍吧!