用C#打印等腰三角形,打印四个方向的直角三角形

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

namespace _7._19day03
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Print(7);
            Console.WriteLine("------------------");
            Print2(7);
            Console.WriteLine("------------------");
            Print5(7);
            Console.WriteLine("------------------");
            Print4(7);
            Console.WriteLine("------------------");
            Print3(7);

            Console.ReadKey();
        }



        public static void Print(int a)
        {
            for (int i = 1; i <= a; i++)
            {
                for (int j = a - i; j > 0; j--)
                {

                    Console.Write(" ");

                }
                for (int k = 2 * i - 1; k > 0; k--)
                {

                    Console.Write("*");
                }
                Console.WriteLine();
            }
        }
        public static void Print2(int a)
        {
            for (int i = 0; i < a; i++)
            {
                for (int j = 0; j < a - i; j++)
                {
                    Console.Write("*");
                }
                Console.WriteLine();
            }
        }

        public static void Print3(int a)
        {
            for (int i = 0; i < a; i++)
            {
                for (int j = 0; j < i + 1; j++)
                {
                    Console.Write("*");
                }
                Console.WriteLine();
            }
        }

        public static void Print4(int a)
        {
            for (int i = 0; i < a; i++)
            {
                for (int j = a - 1 - i; j > 0; j--)
                {
                    Console.Write(" ");
                }
                for (int j = 1; j <= i + 1; j++)
                {
                    Console.Write("*");
                }
                Console.WriteLine();

            }
        }
        public static void Print5(int a)
        {
            for (int i = 0; i < a; i++)
            {
                for (int j = 1; j <= i; j++)
                {
                    Console.Write(" ");
                }
                for (int j = a - i; j > 0; j--)
                {
                    Console.Write("*");
                }

                Console.WriteLine();

            }
        }




    }
}

相关推荐

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-20 12:34:06       106 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-20 12:34:06       116 阅读
  3. 在Django里面运行非项目文件

    2024-07-20 12:34:06       95 阅读
  4. Python语言-面向对象

    2024-07-20 12:34:06       103 阅读

热门阅读

  1. Redis 跳跃列表与紧凑列表

    2024-07-20 12:34:06       30 阅读
  2. 极狐GitLab 如何管理 PostgreSQL 扩展?

    2024-07-20 12:34:06       35 阅读
  3. 学懂C语言系列(一):认识C语言

    2024-07-20 12:34:06       28 阅读
  4. Go的入门

    2024-07-20 12:34:06       31 阅读
  5. SOME/IP配置文件SD中ttl单位是秒

    2024-07-20 12:34:06       23 阅读
  6. Android 14 适配之 - 隐式/显示 Intent 和 广播适配

    2024-07-20 12:34:06       21 阅读
  7. IT服务规划设计之PDCA

    2024-07-20 12:34:06       28 阅读
  8. python-nameparser,一个超酷的Python库!

    2024-07-20 12:34:06       29 阅读
  9. am start -W 命令详解-可以测量应用启动时间的命令

    2024-07-20 12:34:06       24 阅读