c#创建一个简单的Console程序,输出杨辉三角(10行)。
时间: 2024-03-09 10:49:49 浏览: 59
c语言程序实现杨辉三角
好的,以下是C#代码:
```
using System;
class Program
{
static void Main(string[] args)
{
int numRows = 10;
int[][] triangle = new int[numRows][];
for (int i = 0; i < numRows; i++)
{
triangle[i] = new int[i + 1];
triangle[i][0] = 1;
triangle[i][i] = 1;
for (int j = 1; j < i; j++)
{
triangle[i][j] = triangle[i - 1][j - 1] + triangle[i - 1][j];
}
}
for (int i = 0; i < numRows; i++)
{
for (int j = 0; j <= i; j++)
{
Console.Write(triangle[i][j] + " ");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
```
这个程序将输出一个10行的杨辉三角形,每行数字之间有一个空格。你可以在控制台中运行这个程序来查看结果。
阅读全文