100以内被3整除且各位数为6的整数
发布时间:2023-01-31 06:46:35 337 相关标签:
#include
#include
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[])
{
int n,m;
for(n=0;n<=10;n++)
{
m=n*10+6;
if(m%3!=0)
{
continue;
}
printf("%d\n",m);
}
return 0;
}

文章来源: https://blog.51cto.com/u_15943742/6019213
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报