#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
/*
算法分析与设计
P118 16
编写算法检测是否能被4,7,9整除
*/
int main(int argc, char *argv[]) {
int n;
int a,b,c;
scanf("%d",&n);
a=n%4;
b=n%7;
c=n%9;
if(!a&&!b&&!c)
printf("4,7,9全部整除\n");
else if(!a&&!b&&c)
printf("4,7整除\n");
else if(!a&&b&&!c)
printf("4,9整除\n");
else if(a&&!b&&!c)
printf("7,9整除\n");
else if(!a&&b&&c)
printf("4整除\n");
else if(a&&!b&&c)
printf("7整除\n");
else if(a&&b&&!c)
printf("9整除\n");
else if(a&&b&&c)
printf("全部不整除\n");
return 0;
}
检测是否能被4,7,9整除
最新推荐文章于 2024-04-21 02:52:57 发布