課程
/后端開(kāi)發(fā)
/C#
/C#開(kāi)發(fā)輕松入門(mén)
要是輸出等腰三角形的樣子,代碼怎么打啊
2018-01-29
源自:C#開(kāi)發(fā)輕松入門(mén) 4-9
正在回答
using?System; using?System.Collections.Generic; using?System.Linq; using?System.Text; using?System.Threading.Tasks; namespace?Console等腰三角形 { ????class?Program ????{ ????????static?void?Main(string[]?args) ????????{ ????????????for(int?i=0;i<10;i++) ????????????{ ????????????????for?(int?j?=?0;?j?<?10?-?i;?j++) ????????????????????Console.Write("?"); ????????????????for?(int?j?=?1;?j?<?2?*?i;?j++) ????????????????{ ????????????????????Console.Write("*"); ????????????????} ????????????????Console.WriteLine(); ????????????} ????????} ????} }
qq_sure碩兒_0 提問(wèn)者
舉報(bào)
本門(mén)課程是C#語(yǔ)言的入門(mén)教程,將帶你輕松入門(mén).NET開(kāi)發(fā)
1 回答代碼有問(wèn)題
1 回答代碼規(guī)范問(wèn)題
3 回答代碼哪里有問(wèn)題
2 回答求源代碼求源代碼
3 回答請(qǐng)問(wèn)這段代碼哪里有問(wèn)題
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢(xún)優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2018-01-29