Grupo
Funciones en C#
Objectivo
1. Escriba una función llamada "IsAlphabetic" que tome un solo carácter como parámetro.
2. La función debe verificar si el carácter está entre 'A' y 'Z' (inclusive) o entre 'a' y 'z' (inclusive).
3. Si el carácter es alfabético, devuelve verdadero; de lo contrario, devuelve falso.
4. Use la función en un programa de ejemplo que verifique si un carácter es alfabético y muestre el mensaje correspondiente.
Escriba una función de C# que indique si un carácter es alfabético (de la A a la Z). Debe usarse así:
if (IsAlphabetic ("a"))
System.Console.WriteLine ("It is an alphabetical character");
(Nota: No se preocupe por los acentos ni la ñ)
Ejemplo de ejercicio en C#
Mostrar código C#
using System;
class Program
{
// Function to check if a character is alphabetic
public static bool IsAlphabetic(char c)
{
// Check if the character is in the range of 'A' to 'Z' or 'a' to 'z'
return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
}
// Main method to test the IsAlphabetic function
public static void Main(string[] args)
{
// Test with a sample character
char testChar = 'a';
// Check if the character is alphabetic
if (IsAlphabetic(testChar))
{
// Output if the character is alphabetic
System.Console.WriteLine("It is an alphabetic character");
}
else
{
// Output if the character is not alphabetic
System.Console.WriteLine("It is not an alphabetic character");
}
}
}
Output
It is an alphabetic character
Código de ejemplo copiado
Comparte este ejercicio de C#