Grupo
Funciones en C#
Objectivo
1. Define una función llamada Sum que acepte un array de enteros como parámetro.
2. Dentro de la función Sum, calcula la suma de todos los elementos del array.
3. En el método Main, define un array de enteros (p. ej., {20, 10, 5, 2}).
4. Llama a la función Sum y pasa el array para calcular la suma.
5. Usa Console.WriteLine para mostrar la suma en una cadena formateada.
Escribe un programa en C# para calcular la suma de los elementos de un array. "Main" debería ser así:
public static void Main()
{
int[] example = {20, 10, 5, 2};
Console.WriteLine("La suma del array de ejemplo es {0}", Sum(example));
}
Ejemplo de ejercicio en C#
Mostrar código C#
using System;
class Program
{
// Main method where the program execution begins
public static void Main()
{
// Define an example array with some values
int[] example = { 20, 10, 5, 2 };
// Call the Sum function and display the result
Console.WriteLine("The sum of the example array is {0}", Sum(example));
}
// Function to calculate the sum of the elements in an integer array
public static int Sum(int[] array)
{
// Initialize a variable to store the sum
int sum = 0;
// Loop through each element in the array and add it to the sum
foreach (int number in array)
{
sum += number; // Add the current number to the sum
}
// Return the total sum
return sum;
}
}
Output
The sum of the example array is 37
Código de ejemplo copiado
Comparte este ejercicio de C#