#include <stdio.h> int main () { int max=0; int i; for(i=0;i<=100;i++) { if(i%17==0) { max=i; } } printf("最大能被17整除的数:%d\n",max); return 0; }