Sunday, May 31, 2009

Mencetak bintang berbentuk segitiga menggunakan C#

Biasanya kuliah Pemrograman kalo belajar tentang perulangan pasti tugas pertamanya mencetak bintang...
nich contoh program kecil mencetak bintang berbentuk segitiga...
selamat mecoba.... :)

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

namespace Segitiga
{
class Program
{
static void Main(string[] args)
{
int baris = 6;
int tmp = 1;

for (int x = 1; x <= baris; x++)
{
for (int i = baris; i >= x; i--)
{
Console.Out.Write(" ");
}
for (int y = 1; y <= tmp; y++)
{
Console.Out.Write("*");
}
tmp += 2;
Console.Out.Write("\n");
}
Console.ReadKey();
}
}
}


Selamat Mencoba....

good luck...!

1 comment: