Ejercicio 6.1 PDF
Document Details
Uploaded by CostEffectiveRationality3754
ILERNA
Tags
Summary
This C# code snippet demonstrates how to input employee names and salaries, and then find the employee with the highest salary. The code uses arrays to store the data and iterates through them to identify the maximum salary. The output displays employee name and the maximum salary.
Full Transcript
```C# using System; class Program { static void Main() { int numeroEmpleados = 5; // Cambiar el número de empleados cuando sea necesario string[] nombreEmpleado = new string[numeroEmpleados]; double[] salarioEmpleado = new double[numeroEmpleados]; // Paso01: Pedir nombre-salari...
```C# using System; class Program { static void Main() { int numeroEmpleados = 5; // Cambiar el número de empleados cuando sea necesario string[] nombreEmpleado = new string[numeroEmpleados]; double[] salarioEmpleado = new double[numeroEmpleados]; // Paso01: Pedir nombre-salario (5 veces) for (int i = 0; i < nombreEmpleado.Length; i++) { Console.Write("Nombre del empleado " + (i + 1) + ": "); nombreEmpleado[i] = Console.ReadLine(); do { Console.Write("Salario del empleado " + (i + 1) + " (mayor que 0): "); salarioEmpleado[i] = double.Parse(Console.ReadLine()); } while (salarioEmpleado[i] <= 0); } // Paso02: Buscar el mayor sueldo int posicion = 0; for (int i = 0; i < salarioEmpleado.Length; i++) { if (salarioEmpleado[i] > salarioEmpleado[posicion]) { posicion = i; } } // Paso03: Mostrar el resultado Console.WriteLine("El empleado " + nombreEmpleado[posicion] + " tiene el salario máximo: " + salarioEmpleado[posicion] + " euros."); } } ``` ## PERMITE INGRESAR 5 EMPLEADOS CON SUS SUELDOS. DEBE MOSTRAR EL MAYOR Y EL NOMBRE DE QUIEN PERTENECE