编制程序,统计并输出1~100中能被3整除同时能被5整除的整数的个数。
利用for循环与判断语句求出
#include <stdio.h>
int main( ){
int n=0,x=1;
for(x=1; x<100; x++){
if(x%3==0&&x%5==0) {
n++;
}
}
printf("%d",n);
return 0;
}
编制程序,统计并输出1~100中能被3整除同时能被5整除的整数的个数。
利用for循环与判断语句求出
#include <stdio.h>
int main( ){
int n=0,x=1;
for(x=1; x<100; x++){
if(x%3==0&&x%5==0) {
n++;
}
}
printf("%d",n);
return 0;
}