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 on the screen with lines above and below it. If the user does not provide any input, the program will display an error message and return a value of 1 to the operating system. The program handles the input validation and ensures that a title is specified before attempting to display it.



Group

Functions in C#

Objective

1. Use the "WriteTitle" function to display a title on the screen.
2. Allow the user to input a title through the command line arguments.
3. If no text is specified, display an error message indicating that a title is required.
4. Ensure that the program returns a value of 1 to the operating system when no title is provided.
5. If a valid title is provided, display it centered with lines above and below it.

Write a C# program in which you write a title (using the previous WriteTitle function) which the user will specify in command line. If no text is specified, your program will display an error message and return a value of 1 to the operating system.

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 handle command line input
    public static void Main(string[] args)
    {
        // Check if the user provided a title argument
        if (args.Length == 0)
        {
            // Print an error message and return 1 to the operating system
            Console.WriteLine("Error: No title provided.");
            Environment.Exit(1); // Exit with a value of 1
        }
        else
        {
            // If a title is provided, call the WriteTitle function
            WriteTitle(args[0]);
        }
    }
}

 Output

When no argument is provided:

Error: No title provided.

When a valid title is provided:

---------------------- WELCOME TO C# ----------------------

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#.

  • 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...

  • Min and Max Values in an Array in C#

    This C# program defines a function named "MinMaxArray" that takes an array of floating-point numbers and returns the minimum and maximum values stored in the array using reference ...