C# -- 随机数产生的字母金字塔
2021-07-04 13:22
标签:[] npoi 产生 src dom adk poi OLE point C# -- 随机数产生的字母金字塔 1. 代码实现: C# -- 随机数产生的字母金字塔 标签:[] npoi 产生 src dom adk poi OLE point 原文地址:https://www.cnblogs.com/ChengWenHao/p/Random.html 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 )
{
for (int j = 1; j )
{
Console.Write(" ");
}
for (int k = 1; k 2*i-1; k++)
{
Console.Write(strE[r.Next(0,25)]);
}
Console.WriteLine();
}
}
2. 运行结果:
文章标题:C# -- 随机数产生的字母金字塔
文章链接:http://soscw.com/index.php/essay/101739.html