using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Array_5
{
internal class Program
{
static void Main(string[] args)
{
int[] a = { 1, 3, 8, 5, 1, 9, 8, 1, 4, 0, 1, 3, 8, 9, 6 };
int[] f = new int[15];
for (int i = 0; i <= 14; i++) {
++f[a[i]];
}
Console.WriteLine(" j Ferequency ");
Console.WriteLine("-------------------------");
for (int j = 0; j <= 9 ; j++){
Console.WriteLine("{0} {1} ", j ,f[j] ) ;
}
}
}
}
- ۰۱/۰۶/۱۷