namespace PostulanteEmpleo
public static void Main(string[] args)
int totalpreguntas,totalbuenas;
Console.Write("Total de preguntas realizadas :");
linea = Console.ReadLine();
totalpreguntas = int.Parse(linea);
Console.Write("Total de preguntas buenas :");
linea = Console.ReadLine();
totalbuenas = int.Parse(linea);
int porcentaje = totalbuenas*100/totalpreguntas;
Console.Write("Usted es nivel máximo");
if (porcentaje>=75 && porcentaje<90)
Console.Write("Usted es nivel medio");
if (porcentaje>=50 && porcentaje<75)
Console.Write ("Usted es nivel regular");
Console.Write("Usted esta fuera de nivel");