Grupo
Funciones en C#
Objectivo
1. Defina una función llamada WriteCentered que acepte una cadena como parámetro.
2. Dentro de la función WriteCentered, calcule cuántos espacios se requieren a la izquierda y a la derecha de la cadena para centrarla dentro de un ancho de 80 caracteres.
3. Use Console.WriteLine para mostrar el texto con el relleno calculado.
4. En el método Main, llame a la función WriteCentered con la cadena "¡Hola!" como argumento.
5. Asegúrese de que el texto esté correctamente centrado, independientemente de la longitud de la cadena.
Escriba una función de C# para centrar en la pantalla el texto indicado como parámetro (suponiendo un ancho de pantalla de 80 caracteres):
WriteCentered("¡Hola!");
Ejemplo de ejercicio en C#
Mostrar código C#
using System;
class Program
{
// Main method where the program execution begins
public static void Main()
{
// Call the WriteCentered function with the string "Hello!" as the argument
WriteCentered("Hello!");
}
// Function to write the given text centered on the screen with a width of 80 characters
public static void WriteCentered(string text)
{
// Define the total width of the screen
int screenWidth = 80;
// Calculate the length of the text
int textLength = text.Length;
// Calculate how much padding is needed on the left side
int padding = (screenWidth - textLength) / 2;
// Create a string with the padding (spaces) on the left
string paddedText = new string(' ', padding) + text;
// Print the padded text, this will display it centered on the screen
Console.WriteLine(paddedText);
}
}
Output
Hello!
Código de ejemplo copiado
Comparte este ejercicio de C#