问题 问答题 main() int i=1,j=4,k=7; do if(i%j==0) if(i%k==0) printf(“%d\n”,i);break; i++; while(i!=0); 答案 参考答案:28