using System;
public class Program
{
public static void Main()
int[] N=new int[653];
int n=N.Length;
Random rnd=new Random();
for(int i=0;i<653;i++)
N[i]=rnd.Next(0,201);
}
for(int i=n-1;i>0;i--)
for(int j=0;j<i;j++)
if(N[j]<N[j+1])
int tmp = N[j+1];
N[j+1] = N[j];
N[j] = tmp;
Console.WriteLine("15 legtöbb pontszám:");
for(int i=0;i<15;i++)
Console.WriteLine("{0} ", N[i]);
Console.WriteLine("Az 1. és az 15. tanuló pontszámának különbsége: ");
Console.WriteLine(N[1]-N[15]);