C语言循环【1.韩信点兵】 源代码: #include<stdio.h> #include<math.h> int main() { int x; for(x=500;x<1000;x++) { if(x%53&&x%76&&x%11==4) printf("%d",x); } return 0; }