int main(){int c = 0;for (int i = 1; i <= 100; i++){if (i % 3 == 0 && i % 5 == 0)c++;}printf("一共有 %d 个数据\n",c);return 0;}