#include <stdio.h> // 1——100中3的倍数 int main() { int i=0; for (i=1;i<=100;i++) { if(i%3==0) printf("%d ",i); } return 0; }