找出1-1000中能被21整除的所有数并显示
int main() { for(int i = 1; i * 21 < 1000; ++ i) printf("%d ",i * 21); printf("\n"); return 0; }