星号三角形由*组成,第一行有一个*,前面由空格补齐,第二行有3个*,前面也是空格补齐,以此类推,最后一行由2n-1个*组成,没有空格。,由此形成的一个三角形。
1、分析三角形的计算公式、
2、星号三角形的代码以及实验结果
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace week03_1
{
internal class Program
{
static void Main(string[] args)
{
int n = 19;
for (int i = 1; i < (n+1)/2; i++)
{
for (int j = 1; j <= (n-1)/2-i; j++)
{
Console.Write(" ");
}
for (int j = 1; j <= 2*i-1; j++)
{
Console.Write("*");
}
for (int j = 1; j <= (n - i) / 2; j++)
{
Console.Write(" ");
}
Console.WriteLine();
}
Console.ReadKey();
}
}
}