課程
/后端開發(fā)
/Java
/Java入門第一季(IDEA工具)升級版
循環(huán)了幾次怎么算出臺
2017-12-28
源自:Java入門第一季(IDEA工具)升級版 5-1
正在回答
count初始值是0,循環(huán)了幾次就得看你count最后輸出幾 ,就循環(huán)了幾次。。。
菜鳥編程啊,哈哈哈
public class HelloWorld{
? public static void main(String[] arg){
? ? int score=53;
? ? int count=0;
? ? System.out.println("加分前的成績:"+score);
? ? for(score=53;score<60;score++){
? ? ? ?count++;
? ? }
? ? ?System.out.println("加分后的成績:"+score);
? ? ?System.out.println("共加了"+count+"次!");
? }
}
int score = 53 //定義成績?yōu)?3
int count = 0 //定義加分次數(shù),初始為0
System.out.println("初始成績:" + score);
while(score < 60){????//定義循環(huán)的條件,成績低于60分,循環(huán);當(dāng)成績滿足60分時,跳出循環(huán)
????score++????//成績加一分
????count++????//循環(huán)次數(shù)加一
//跳出循環(huán)時輸出成績和加分次數(shù)
System.out.println("當(dāng)前成績:" + score);
System.out.println("加分次數(shù):" + count +"次!");
舉報
0基礎(chǔ)萌新入門第一課,從Java環(huán)境搭建、工具使用、基礎(chǔ)語法開始
1 回答我怎么只循環(huán)了一次
1 回答這樣為什么只循環(huán)了一次
3 回答為什么這個要循環(huán)5次才出來?
2 回答為啥用while這樣循環(huán)出來,全部都列出來了。。。
3 回答循環(huán)里的 nums.length 是怎么出來的
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2018-01-30
count初始值是0,循環(huán)了幾次就得看你count最后輸出幾 ,就循環(huán)了幾次。。。
2017-12-29
菜鳥編程啊,哈哈哈
2017-12-28
public class HelloWorld{
? public static void main(String[] arg){
? ? int score=53;
? ? int count=0;
? ? System.out.println("加分前的成績:"+score);
? ? for(score=53;score<60;score++){
? ? ? ?count++;
? ? }
? ? ?System.out.println("加分后的成績:"+score);
? ? ?System.out.println("共加了"+count+"次!");
? }
}
2017-12-28
int score = 53 //定義成績?yōu)?3
int count = 0 //定義加分次數(shù),初始為0
System.out.println("初始成績:" + score);
while(score < 60){????//定義循環(huán)的條件,成績低于60分,循環(huán);當(dāng)成績滿足60分時,跳出循環(huán)
????score++????//成績加一分
????count++????//循環(huán)次數(shù)加一
}
//跳出循環(huán)時輸出成績和加分次數(shù)
System.out.println("當(dāng)前成績:" + score);
System.out.println("加分次數(shù):" + count +"次!");