供参考:
#include<stdio.h> int main() { int i=100; while(i<=200) { if(i%17==0) printf("%d ",i); i++; } return 0; }