public static void Main()
Random rnd = new Random();
for(int i=0; i < 3000; i++)
int question = rnd.Next(1, 4);
int answer = rnd.Next(1, 4);
Console.WriteLine("Question: " + question + " Answer: " + answer);
if (question == answer) {correct++;}
Console.WriteLine("Numero de correctes: " + correct);
Console.WriteLine("Numero de incorrectes: " + incorrect);
float percentatge = (float) correct/3000 * 100;
Console.WriteLine("Percentatge: " + percentatge + "%");