编辑代码

#include <stdio.h>
int main ()
{
    int x;

    for(x=100;x>0;x--)
    
    if(x%17==0)break;
    printf("最大的值为%d\n",x);
}