namespace NivelPostulante
public static void Main(string [] args)
int totalPreguntas,totalCorrectas;
Console.Write("Ingrese la cantidad total de preguntas del examen:");
linea = Console.ReadLine();
totalPreguntas=int.Parse(linea);
Console.Write("Ingrese la cantidad total de preguntas contestadas correctamente:");
linea = Console.ReadLine();
totalCorrectas=int.Parse(linea);
int porcentaje=totalCorrectas * 100 / totalPreguntas;
Console.Write("Nivel máximo");
Console.Write("Nivel medio");
Console.Write("Nivel regular");
Console.Write("Fuera de nivel");