在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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(); } }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论