00001 00002 int 00003 main() 00004 { 00005 int i; 00006 00007 start: 00008 do i++; while (i); 00009 do { 00010 i = i + 1; 00011 } while (i != 0); 00012 00013 while (1) i++; 00014 while (i) { 00015 i--; 00016 continue; 00017 } 00018 00019 if (i) 00020 if (!i) i++; 00021 else i--; 00022 00023 switch (i) { 00024 case 7: 00025 default: 00026 break; 00027 } 00028 00029 goto end; 00030 00031 end: 00032 return -1; 00033 }