C#随机数生成字母金字塔
作者:在代码的世界里游走
这篇文章主要为大家详细介绍了C#随机数生成字母金字塔,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了C#随机数生成字母金字塔的具体代码,供大家参考,具体内容如下
1. 代码实现:
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. 运行结果:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。