Ejercicio 4.3 C# Program PDF
Document Details
Uploaded by CostEffectiveRationality3754
ILERNA
Tags
Summary
This C# program declares an integer vector of size 10. The program prompts the user to enter 10 values, then determines and displays the number of even values within the vector. The program will prompt the user to enter an integer value for the input
Full Transcript
```C# using System; class Program { static void Main() { // Paso01: Crear el vector de 10 posiciones de enteros int[] vector = new int[10]; // Paso02: Pedir 10 valores for (int i = 0; i < vector.Length; i++) { Console.Write("Introduce un...
```C# using System; class Program { static void Main() { // Paso01: Crear el vector de 10 posiciones de enteros int[] vector = new int[10]; // Paso02: Pedir 10 valores for (int i = 0; i < vector.Length; i++) { Console.Write("Introduce un valor entero: "); vector[i] = int.Parse(Console.ReadLine()); } // Paso03: Distinguir pares e impares int pares = 0; for (int i = 0; i < vector.Length; i++) { if (vector[i] % 2 == 0) { pares++; } } // Paso04: Mostrar resultado Console.WriteLine("El vector tiene " + pares + " números pares."); } } ``` ESCRIBE UN PROGRAMA QUE DECLARE UN VECTOR DE NUMEROS ENTEROS TAMAÑO 10, QUE PIDA VALOR PUR TECLADO Y CUENTE LOS NUMEROS PARES QUE TIENE.