Ejercicio
Parámetros de Main, Suma
Objetivo
Cree un programa llamado "suma", que reciba dos números enteros en la línea de comandos y muestre su suma, como en este ejemplo:
suma 5 3
8
Código de Ejemplo
// Importing the System namespace to access basic system functions
using System;
class Program
{
// Main method where the program starts
public static void Main(string[] args)
{
// Checking if the user has provided two arguments
if (args.Length == 2)
{
try
{
// Parsing the arguments to integers safely
int num1 = int.Parse(args[0]); // The first number provided in the command line
int num2 = int.Parse(args[1]); // The second number provided in the command line
// Calculating and displaying the sum of the two numbers
Console.WriteLine(num1 + num2); // The sum of num1 and num2 is printed
}
catch (FormatException)
{
// If the user inputs non-numeric values, catch the exception and display an error message
Console.WriteLine("Error: Please enter valid integers.");
}
}
else
{
// If the user does not provide exactly two arguments, display an error message
Console.WriteLine("Please provide exactly two numbers.");
}
}
}