為什么我的score 打印不出來,而且報錯了
public class xinguan{
public static void main(String []args){
?int time=0;
?for(int score=50;score<60;score++){
?? time++;}
?System.out.println("加分前成績?yōu)?+score);
?System.out.println("總共加了"+time+"次");
}}
?
public class xinguan{
public static void main(String []args){
?int time=0;
?for(int score=50;score<60;score++){
?? time++;}
?System.out.println("加分前成績?yōu)?+score);
?System.out.println("總共加了"+time+"次");
}}
?
2015-10-20
舉報
2015-10-20
樓上正解,score的作用域僅限于for循環(huán)判斷起止條件的那一小塊邏輯,當打印score的時候,作用域已經結束了,如果想打印的話,可以將score的聲明調整為和time平級的。這樣作用域就是整個main方法了。
2015-10-20
你的score是在for循環(huán)里面的,你在for循環(huán)外面是無法調用score的。你可以定義一個屬性用來保存score,而且你的輸出語句要放在for循環(huán)里面