Write a Centered Title with Lines in C#

In this C# program, we will create a function named "WriteTitle" that takes a string as input and displays it centered on the screen with a line above and below the text. The text will be written in uppercase and extra spaces will be added to ensure it is centered within 80 columns. The function will also adjust the number of hyphens based on the length of the string to properly align the title.



Group

Functions in C#

Objective

1. Create a function called "WriteTitle" that accepts a string as a parameter.
2. Convert the string to uppercase.
3. Add extra spaces to center the text on an 80-column screen.
4. Add a line of hyphens above and below the text.
5. Print the title in the format shown below.

Write a C# function named "WriteTitle" to write a text centered on screen, uppercase, with extra spaces and with a line over it and another line under it.

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Function to write a centered title with lines above and below the text
    public static void WriteTitle(string text)
    {
        // Convert the text to uppercase
        string upperText = text.ToUpper();

        // Calculate the total width (80 characters) minus the length of the title
        int spaces = (80 - upperText.Length) / 2;

        // Create the line of hyphens based on the length of the title
        string line = new string('-', upperText.Length + spaces * 2);

        // Print the top line of hyphens
        Console.WriteLine(line);

        // Print the centered title with spaces on both sides
        Console.WriteLine(new string(' ', spaces) + upperText + new string(' ', spaces));

        // Print the bottom line of hyphens
        Console.WriteLine(line);
    }

    // Main method to test the WriteTitle function
    public static void Main()
    {
        // Test the WriteTitle function with the text "Welcome!"
        WriteTitle("Welcome!"); // This will display the centered title with lines
    }
}

 Output

----------------------- WELCOME! ------------------------

Share this C# Exercise

More C# Practice Exercises of Functions in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Command Line Title Writer in C#

    This C# program allows the user to provide a title from the command line. The program uses the previously created "WriteTitle" function to display the title in uppercase, centered ...

  • Count Digits and Vowels in a String in C#

    This C# function is designed to calculate the number of numeric digits and vowels within a given text string. The function, named "CountDV", accepts three parameters: the string to...

  • Check if a Character is Alphabetic in C#

    This C# function is designed to check if a given character is alphabetic, meaning it falls within the range of letters A to Z (both uppercase and lowercase). The function should re...

  • Check if a String is an Integer in C#

    This C# function is designed to check if a given string represents an integer number. The function should return a boolean value indicating whether the string can be successfully p...

  • Calculator C# Program Using Command Line Parameters

    This C# program allows users to perform basic arithmetic operations such as addition, subtraction, multiplication, or division directly from the command line. The user needs to pro...

  • Arithmetic Operations with Error Codes in C#

    This C# program calculates basic arithmetic operations, such as sum, subtraction, multiplication, or division, based on the command line parameters provided by the user. The progra...