#828. 循环及求余

循环及求余

以下程序段的输出结果是({{ input(1) }} )

int y=10;
for ( ;y>0;y--)
    if (y%3==0)
    {
        printf("%d",--y); 
        continue;
    }