#include<stdio.h>
int main()
{
int i,count=0;
for (i=100;i<1000;i++)
填空
}
#include<stdio.h>
int main()
{
int i, count = 0;
for (i = 100; i < 1000; i++)
if (i % 3 == 0 && i % 10 == 6)
printf("%d\n", i);
return 0;
}
if(i %3 == 0 && i % 10 == 6){
count++;
}
```