main(){int a=1,b=2,t,c=2;while(a<b<c){ t=a; a=b; b=t; c--;}printf("%d,%d,%d",a,b,c);}答案是1,2,0编译没有出错,编译器也没问题请问为什么while循环执行了两遍?
阅读全文
2008
07-27