Grupo
Funciones en C#
Objectivo
1. Escriba una función llamada "IsNumber" que tome una cadena como parámetro.
2. La función debe intentar convertir la cadena en un entero mediante el método `int.TryParse()`.
3. Si la cadena se puede convertir correctamente en un entero, devuelve `true`; de lo contrario, devuelve `false`.
4. Utilice la función en un programa de ejemplo que compruebe si una cadena representa un entero válido y muestre el mensaje correspondiente.
Escriba una función de C# que indique si una cadena es un número entero. Debe usarse así:
if (IsNumber ("1234"))
System.Console.WriteLine ("It is anumeric value");
Ejemplo de ejercicio en C#
Mostrar código C#
using System;
class Program
{
// Function to check if a string is a valid integer
public static bool IsNumber(string input)
{
// Try to parse the input string as an integer
return int.TryParse(input, out int result);
}
// Main method to test the IsNumber function
public static void Main(string[] args)
{
// Test with a sample string
string testString = "1234";
// Check if the string is a valid integer
if (IsNumber(testString))
{
// Output if the string is a valid integer
System.Console.WriteLine("It is a numerical value");
}
else
{
// Output if the string is not a valid integer
System.Console.WriteLine("It is not a numerical value");
}
}
}
Output
It is a numerical value
Código de ejemplo copiado
Comparte este ejercicio de C#