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