C# -- 随机数产生的字母金字塔

时间:2023-03-08 22:37:45

C# -- 随机数产生的字母金字塔

1. 代码实现:

        static void Main(string[] args)
{
showNpoint();
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 = ; i <=count; i++)
{
for (int j = ; j <=count-i; j++)
{
Console.Write(" ");
} for (int k = ; k <= *i-; k++)
{
Console.Write(strE[r.Next(,)]);
}
Console.WriteLine();
}
}

2. 运行结果:

C# -- 随机数产生的字母金字塔C# -- 随机数产生的字母金字塔