課程
/后端開發(fā)
/C#
/C#開發(fā)輕松入門
查找。
2017-05-14
源自:C#開發(fā)輕松入門 5-4
正在回答
for(int i=0;i<score.Length;i++)\\循環(huán)條件
{if(score[i]<60)\\判斷條件
Console.Write(score[i]+",");
}
上面那個寫錯了,少寫了分號
for(int i=0;i<score.Length;i++)
{if(score[i]<60)
Console.Write(score[i]+",")
舉報
本門課程是C#語言的入門教程,將帶你輕松入門.NET開發(fā)
3 回答請各位學友幫幫忙
2 回答各位老師,請問個小問題~
4 回答請幫我一下,謝謝
3 回答各位大佬請幫我簡化下我的代碼,感覺有些復雜
2 回答幫我一下thank
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學習伙伴
掃描二維碼關注慕課網(wǎng)微信公眾號
2017-05-14
for(int i=0;i<score.Length;i++)\\循環(huán)條件
{if(score[i]<60)\\判斷條件
Console.Write(score[i]+",");
}
上面那個寫錯了,少寫了分號
2017-05-14
for(int i=0;i<score.Length;i++)
{if(score[i]<60)
Console.Write(score[i]+",")
}