本文實(shí)例為大家分享了C#隨機(jī)數(shù)生成字母金字塔的具體代碼,供大家參考,具體內(nèi)容如下
1. 代碼實(shí)現(xiàn):
static void Main(string[] args) { showNpoint(25); Console.ReadKey(); } private static void showNpoint(int count) { Random r = new Random(); string[] strE = { "A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"}; for (int i = 1; i <=count; i++) { for (int j = 1; j <=count-i; j++) { Console.Write(" "); } for (int k = 1; k <= 2*i-1; k++) { Console.Write(strE[r.Next(0,25)]); } Console.WriteLine(); } }
2. 運(yùn)行結(jié)果:
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。
|
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注