供参考:
#include<stdio.h> int main() { int i; i=0; do{ if(i%3 == 2) if(i%4 == 3) break; i=i+5; }while(1); printf("%d\n",i); return 0; }