LOOPING
using System;
namespace pengulangan
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class tugas5
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
int i,j,n;
Console.Write("Input bilangan = ");
n=Convert.ToInt32(Console.ReadLine());
for (i=1;i<=n;i++)
{
for (j=i;j>0;j--)
{
Console.WriteLine("{0}",i);
}
}
Console.ReadLine();
}
}
}
Jika sudah dilakukan proses debugging, maka tampilannya adalah sebagai berikut :
Tidak ada komentar:
Posting Komentar