Koding Bintang Warna Pada C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication45
{
class Program
{
static void Main(string[] args)
{
int baris, kolom;
for (baris = 0; baris
<= 10; baris++)
{
for (kolom = 0; kolom
<= baris; kolom++)
{
if (kolom % 2 == 1)
{
Console.ForegroundColor = ConsoleColor.Magenta;
Console.Write("*");
}
else
{
Console.ForegroundColor = ConsoleColor.White;
Console.Write("*");
}
}
Console.Write("\n");
Console.ReadLine();
}
}
}
}
Comments