void main() { int i ; i=7; while(i<=100) { if((i%7)==0) printf("%d",i); i+=7; } } 要求7的倍数,那么就是7不断加上n个7,最后超过了100就不是所求,小于100的就是所求。