【多选题】On opening Photoshop, you will see the following items:
【单选题】(第 3 章)在以下选项中,没有构成死循环的程序段是( )
A.
int i=100; while(1) { i=i%100+1; if(i>100)break; }
C.
int k=1000; do { ++k; } while(k>=1000);
D.
int s=36; while(s) --s;
【单选题】NaAc水溶液的K b θ 与HAc水溶液的K a θ 的关系是:
【单选题】(第 3 章)以下程序中, while 语句的执行次数是( ) main() { int i=0; while(i<10) { if(i<1)continue; if(i==5)break; i++; } }