Program Pola Bintang Belah Ketupat dengan C#

Program Pola Bintang Belah Ketupat dengan C#

Berikut adalah contoh kode untuk menghasilkan Program Pola Bintang Belah Ketupat dengan C#

C#
using System;

class Program
{
    static void Main(string[] args)
    {
        int rows, i, j, space;

        Console.Write("Masukkan jumlah baris: ");
        rows = Convert.ToInt32(Console.ReadLine());

        space = rows - 1;

        for (j = 1; j <= rows; j++)
        {
            for (i = 1; i <= space; i++)
            {
                Console.Write(" ");
            }

            space--;

            for (i = 1; i <= 2 * j - 1; i++)
            {
                Console.Write("*");
            }

            Console.WriteLine();
        }

        space = 1;

        for (j = 1; j <= rows - 1; j++)
        {
            for (i = 1; i <= space; i++)
            {
                Console.Write(" ");
            }

            space++;

            for (i = 1; i <= 2 * (rows - j) - 1; i++)
            {
                Console.Write("*");
            }

            Console.WriteLine();
        }

        Console.ReadLine();
    }
}
C#

Jalankan kode di atas untuk menghasilkan pola bintang belah ketupat sesuai dengan jumlah baris yang dimasukkan.

Leave a Reply

Your email address will not be published. Required fields are marked *