今天尝试写了一下金字塔的图形,用了三个for循环。for example:
public Class Test { public void UpToFor() { for(int i=0;i<9;i++) { for(for int j=i;j<8;j++) { Console.Write(" "); } for(int z=0;z<=2*i;z++) { Console.Write("*"); } Console.WriteLine(); } Console.ReadKey(); } static void Main(string[] args) { UpToFor(); } }
时间: 2024-10-10 07:57:43