微信扫一扫
int main()
{
int w = 0;
for(w = 1;w <= 100;w++)
if( w % 3 == 0)
printf("%d ",w);
}
return 0;
相关推荐