using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Array_7
{
internal class Program
{
static void Main(string[] args)
{
int[] n = { 4, 3, 6, 2, 5 };
Console.WriteLine( " Element Value Histogram " ) ;
Console.WriteLine( " .......................................... " ) ;
for (int i = 0; i <= 4; i++)
{
Console.Write( "\n {0} \t \t {1}\t\t ", i , n[i]) ;
for (int j = 0 ; j <= n[i] ; j++)
{
Console.Write( "*" ) ;
}
}
Console.ReadKey();
}
}
}
- ۹۵/۰۶/۱۷