C#基礎第二天-作業答案-九九乘法表-打印星星


題一:九九乘法表的答案    


            //正三角
            for (int i = 1; i < 10; i++)
            {
                for (int j = 1; j <= i; j++)
                {
                    Console.Write("{0}*{1}={2} ", j, i, i * j);
                }
                Console.WriteLine();
            }
            Console.ReadLine();

            //倒三角
            for (int i = 9; i >= 1; i--)
            {
                for (int j = i; j >= 1; j--)
                {

                    Console.Write("{0}*{1}={2} ", i, j, i * j);  //不換行
                }
                Console.WriteLine(); //換行
            }
            Console.ReadLine();  

            反倒三角
            string sd = string.Empty;
            for (int i = 9; i >= 1; i--)
            {
                for (int j = i; j >= 1; j--)
                {
                    string k = "  ";
                    if (j * i > 9)
                    {
                        k = " ";
                    }
                    Console.Write("{0}*{1}={2}{3}", j, i, i * j, k);
                }
                Console.WriteLine();
                sd += "       ";
                Console.Write(sd);
            }
            Console.ReadLine();


題二:

            //星星圖1
            Console.WriteLine("請輸入您想看到的星星行數");
            int num = Convert.ToInt32(Console.ReadLine());
            for (int hang = 1; hang <= num; hang++)
            {
                string k = String.Empty;
                string x = String.Empty;
                for (int kong = 1; kong <= num - hang; kong++)
                {
                    k += " ";
                }
                for (int xing = 1; xing <= hang; xing++)
                {
                    x += "* ";
                }
                Console.WriteLine(k + x + k);
            }
            Console.ReadLine();

            //星星圖(倒三角星星)
            Console.WriteLine("請輸入您想看到的星星行數");
            int num = Convert.ToInt32(Console.ReadLine());
            for (int hang = 1; hang <= num; hang++)
            {
                string k = String.Empty;
                string x = String.Empty;
                for (int kong = 1; kong <= hang - 1; kong++)
                {
                    k += " ";
                }
                for (int xing = 1; xing <= num - hang + 1; xing++)
                {
                    x += "* ";
                }
                Console.WriteLine(k + x + k);
            }
            Console.ReadLine();

            ////星星圖四
            Console.WriteLine("請輸入您想看到的星星行數");
            int num = Convert.ToInt32(Console.ReadLine());
            int gg = num * 2;
            for (int hang = 1; hang <= num; hang++)
            {
                string k = String.Empty;
                string x = String.Empty;
                for (int kong = 1; kong <= gg - 2 * hang; kong++)
                {
                    k += " ";
                }
                for (int xing = 1; xing <= hang; xing++)
                {
                    x += "* ";
                }
                Console.WriteLine(k + x);
            }
            Console.ReadLine();

            //星星圖(倒三角*)
            Console.WriteLine("請輸入您想看到的星星行數");
            int num = Convert.ToInt32(Console.ReadLine());
            int gg = num * 2;
            for (int hang = 1; hang <= num; hang++)
            {
                string k = String.Empty;
                string x = String.Empty;
                for (int kong = 1; kong <= 2 * (hang - 1); kong++)
                {
                    k += " ";
                }
                for (int xing = 1; xing <= num - hang + 1; xing++)
                {
                    x += "* ";
                }
                Console.WriteLine(k + x);
            }
            Console.ReadLine();

           //星星圖(最終效果菱形)
            int a = int.Parse(Console.ReadLine());
            for (int i = 0; i <= a; i++)
            {
                string k = String.Empty;
                string x = String.Empty;
                for (int s = 0; s < a - i + 1; s++)
                {
                    k += " ";
                }
                for (int d = 0; d < 2 * i - 1; d++)
                {
                    x += "*";
                }
                Console.WriteLine(k + x + k);
            }
            for (int i = a - 1; i > 0; i--)
            {
                string k = String.Empty;
                string x = String.Empty;
                for (int s = 0; s < a - i + 1; s++)
                {
                    k += " ";
                }
                for (int d = 0; d < 2 * i - 1; d++)
                {
                    x += "*";
                }
                Console.WriteLine(k + x + k);
            }
            Console.ReadLine();
          //星星圖(顯示 圖四效果/圖五效果)最終顯示圖六效果

          for (int i = 1; i <= 4; i++)
            {
                for (int j = 1; j <= 4 - i; j++)
                {
                    Console.Write(" ");
                }
                for (int k = 1; k <= i; k++)
                {
                    Console.Write("*");
                }
                Console.WriteLine("");
            }
            for (int i = 4; i >= 1; i--)
            {
                for (int j = 1; j <= 4 - i; j++)
                {
                    Console.Write(" ");
                }
                for (int k = 1; k <= i; k++)
                {
                    Console.Write("*");
                }
                Console.WriteLine("");
            }
            Console.ReadKey();

 

 本系列教程:

C#基礎總結之八面向對象知識點總結-繼承與多態-接口-http://www.cnblogs.com/spring_wang/p/6113531.html

C#基礎總結之七面向對象知識點總結1http://www.cnblogs.com/spring_wang/p/6113526.html

C#基礎總結之六 DataTable (臨時表/數據源) 和Datatable 名片練習http://www.cnblogs.com/spring_wang/p/6113520.html

C#基礎總結之五Dictionary<string, string[]>和while循環http://www.cnblogs.com/spring_wang/p/6113514.html

C#基礎總結之四List-Hashtable-冒泡排序http://www.cnblogs.com/spring_wang/p/6113504.html

C#基礎總結之三循環控制-for-數組-乘法表-arraylisthttp://www.cnblogs.com/spring_wang/p/6113496.html

C#基礎總結之二循環控制-運算符http://www.cnblogs.com/spring_wang/p/6113484.html

C#基礎總結之一變量常量-if嵌套語句-witch結構-類型轉換http://www.cnblogs.com/spring_wang/p/6113476.html

C#基礎課程之六(臨時表)DataTable使用方法http://www.cnblogs.com/spring_wang/p/6113454.html

C#基礎課程之五集合(HashTable,Dictionary)http://www.cnblogs.com/spring_wang/p/6113404.html

C#基礎課程之四集合(ArrayList、List<泛型>)http://www.cnblogs.com/spring_wang/p/6113396.html

C#基礎課程之三循環語句http://www.cnblogs.com/spring_wang/p/6113383.html

C#基礎課程之二變量常量及流程控制http://www.cnblogs.com/spring_wang/p/6113372.html

C#基礎課程之一注釋和控制台、一些常識http://www.cnblogs.com/spring_wang/p/6113361.html

C#基礎第九天-作業答案-儲蓄賬戶(SavingAccount)和信用賬戶(CreditAccount) http://www.cnblogs.com/spring_wang/p/6113291.html

C#基礎第九天-作業-儲蓄賬戶(SavingAccount)和信用賬戶(CreditAccount) http://www.cnblogs.com/spring_wang/p/6113285.html

C#基礎第八天-作業答案-設計類-面向對象方式實現兩個帳戶之間轉賬http://www.cnblogs.com/spring_wang/p/6113274.html

C#基礎第八天-作業-設計類-面向對象方式實現兩個帳戶之間轉賬http://www.cnblogs.com/spring_wang/p/6113258.html

C#基礎第七天-作業答案-利用面向對象的思想去實現名片-動態添加http://www.cnblogs.com/spring_wang/p/6113232.html

C#基礎第七天-作業-利用面向對象的思想去實現名片-動態添加http://www.cnblogs.com/spring_wang/p/6113224.html

C#基礎第六天-作業-利用面向對象的思想去實現名片http://www.cnblogs.com/spring_wang/p/6113028.html

C#基礎第六天-作業答案-利用面向對象的思想去實現名片http://www.cnblogs.com/spring_wang/p/6113033.html

C#基礎第五天-作業答案-用DataTable制作名片集http://www.cnblogs.com/spring_wang/p/6113022.html

C#基礎第五天-作業-用DataTable制作名片集http://www.cnblogs.com/spring_wang/p/6113013.html

C#基礎第四天-作業答案-Hashtable-list<KeyValuePair>泛型實現名片http://www.cnblogs.com/spring_wang/p/6113005.html

C#基礎第四天-作業-Hashtable-list<KeyValuePair>泛型實現名片http://www.cnblogs.com/spring_wang/p/6113000.html

C#基礎第三天-作業答案-集合-冒泡排序-模擬名片http://www.cnblogs.com/spring_wang/p/6112888.html

C#基礎第三天-作業-集合-冒泡排序-模擬名片http://www.cnblogs.com/spring_wang/p/6112885.html

C#基礎第二天-作業答案-九九乘法表-打印星星http://www.cnblogs.com/spring_wang/p/6112881.html

C#基礎第二天-作業-九九乘法表-打印星星http://www.cnblogs.com/spring_wang/p/6112875.html

C#基礎第一天-作業答案http://www.cnblogs.com/spring_wang/p/6112872.html

C#基礎第一天-作業http://www.cnblogs.com/spring_wang/p/6112867.html

C#-string.Format對C#字符串格式化http://www.cnblogs.com/spring_wang/p/6077098.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM