收起
int main() { int n=6; while(1) { if(n%6==1 && n%7==2 && n%8==3 && n%9==4) { printf("%d", n); break; } n++; } return 0; }
报告相同问题?