public static void Main()
Console.Write("1. tentamen:");
int ten1=Convert.ToInt32(Console.ReadLine());
Console.Write("2. tentamen:");
int ten2=Convert.ToInt32(Console.ReadLine());
Console.Write("3. tentamen:");
int ten3=Convert.ToInt32(Console.ReadLine());
int ort=(ten1+ten2+ten3)/3;
Console.WriteLine("Gemiddelde:{0}",ort);
Console.WriteLine("wil je nog een keer? (j of nee)");
char kies=Convert.ToChar(Console.ReadLine());
else if(kies=='n'||kies=='N')
Console.WriteLine("dagggg!!!");
Console.WriteLine("verkeerde kies letter");