码迷,mamicode.com
首页 > 其他好文 > 详细

7.5

时间:2019-04-08 00:51:18      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:if语句   div   使用   The   while   png   turn   and   info   

// 7.5
/* divisors.c -- 使用嵌套if语句显示一个数的约数 /
#include <stdio.h>
#include <stdbool.h>
int main(void)
{
unsigned long num; // 待测试的数
unsigned long div; // 可能的约数
bool isPrime; // 素数标记
printf("Please enter an integer for analysis; ");
printf("Enter q to quit.\n");
while (scanf("%lu", &num) == 1)
{
for (div = 2, isPrime = true; (div
div) <= num; div++)
{
if (num % div == 0)
{
if ((div * div) != num)
printf("%lu is divisible by %lu and %lu.\n",
num, div, num / div);
else
printf("%lu is divisible by %lu.\n", num, div);
isPrime = false; // 该数不是素数
}
}
if (isPrime)
printf("%lu is prime.\n", num);
printf("Please enter another integer for analysis; ");
printf("Enter q to quit.\n");
}
printf("Bye.\n");
return 0;
}

技术图片

7.5

标签:if语句   div   使用   The   while   png   turn   and   info   

原文地址:https://www.cnblogs.com/EisNULL/p/10668210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!