菜鸟求助:关于代码优化和for循环
for(int i=0;i<100;i++){ int a=GetXXX(i); for(int j=0;j<100;j++) { int b=GetXXX(j); if(a>b) { continue; } if(......) { ......; } }}