#include <stdio.h> int main () { int i=1; printf("以下是1~1000之间能被3整除的数:\n"); while(i<1001) { if(i%3==0) { printf("%d\t",i); } i++; } return 0; }