我知道自己這樣寫法不是很完美

希望之後程式能力可以慢慢提升。

再將正三角形的寫法寫得更漂亮

以下是完整程式碼

-------

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Ch6_3_1_cmd3
{
    class Program
    {
        static void Main(string[] args)
        {
            
           
            for(int i=1;i<=9;i++)
            {
                for(int j=9;j>=i;j--)
                {
                    Console.Write(" ");
                }
                for(int k=1;k<=i;k++)
                {
                    Console.Write("*");
                }
                for(int h=1;h<=i;h++)
                {
                    if(h==i)
                    {
                        Console.Write("");
                    }
                    else
                    {
                        Console.Write("*");
                    }
                    
                }
                Console.WriteLine();
            }
      
            Console.Read();
        }
    }
}


arrow
arrow
    文章標籤
    C# 迴圈結構 正三角形
    全站熱搜
    創作者介紹
    創作者 gamer99122 的頭像
    gamer99122

    菜鳥L的手札

    gamer99122 發表在 痞客邦 留言(0) 人氣()