generate functionWed, 24 Jul 2024

Un postulante a un empleo, realiza un test de capacitación. Se obtuvo la siguiente información: cantidad total de preguntas que se realizaron y la cantidad de preguntas que contestó correctamente. Se pide desarrollar un programa que ingrese los datos por teclado e informe el nivel del mismo según el porcentaje de respuestas correctas que ha tenido y sabiendo que: Nivel máximo --- porcentaje >=90%. Nivel medio --- porcentaje >=75% y <90%. Nivel regular --- porcentaje >=50% y < 75%. Fuera de nivel --- porcentaje < 50%.

ng System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int m = int.Parse(Console.ReadLine()); int k = int

Questions about programming?Chat with your personal AI assistant