Contoh kembali program C#, yaitu program Looping. Program ini menampilkan program bintang dengan menginput tinggi untuk menampilkannya : programnya sebagai berikut :
using System;
namespace Pengulangan
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class Class1
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
int k,n,i,j;
Console.WriteLine("BANYAK BINTANG");
Console.Write("\n\nInput Tinggi : ");
n=Convert.ToInt32(Console.ReadLine());
k=n;
for(i=1;i<=n;i++)
{
for(j=k;j>=1;j--)
{
Console.WriteLine(" ");
}
for(j=1;j<=i;j++)
{
Console.WriteLine(" *");
}
Console.WriteLine("\n");
k=k-1;
}
Console.ReadLine();
}
}
}
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment