教甄◆電腦科專業題庫

【非選題】
10.下列程式片斷執行結果為何? (10) int s=0; int i=10, j=3; while(i>2) { i=i-j; while (j>i) { s=s+j; j=j-2; } } printf(“%d”,s);