問一個小的運算問題,請高手指教!

safeel發表於2004-08-10
有一個問題:
class Example4{
public static void main(String args[]){
int x;
for(x=0;x<10;x=x+1)
System.out.println("This is x:"+x);
}
}
怎麼程式執行後x=0?

相關文章