#include<stdio.h> void main() { int n; for(n=4;n<100;n=n+10) //从4开始,每下一个加10,想想是不是呀! { if(n%7==0) printf("%d\t",n); } printf("\n"); }