Ejercicio
Función Que Devuelve Un Valor
Objectivo
Crea un programa en C# cuyo Main debe ser así:
public static void Main()
{
int x= 3;
int y = 5;
Console.WriteLine( Suma(x,y) );
}
"Suma" es una función que debes definir y que será llamada desde dentro de Main. Como puede ver en el ejemplo, debe aceptar dos enteros como parámetros, y debe devolver un número entero (la suma de esos dos números).
Ejemplo Ejercicio C#
Mostrar Código C#
// Importing the System namespace to access basic system functions
using System;
class Program
{
// Function to calculate the sum of two integers and return the result
public static int Sum(int a, int b)
{
// Return the sum of a and b
return a + b;
}
// Main method to call the Sum function and display the result
public static void Main()
{
// Declare two integer variables
int x = 3; // First number
int y = 5; // Second number
// Call the Sum function with x and y as arguments, and display the result
Console.WriteLine(Sum(x, y)); // This will print 8 (3 + 5)
}
}
Salida
8
Código de Ejemplo Copiado!
Comparte este Ejercicio C# Sharp