Display Current Date and Time in C#

In this exercise, you will create a program that displays the current date and time in a specific format. The format should be as follows:
"Today is 6 of February of 2015. It's 03:23:12".

The program will use C#'s built-in DateTime class to fetch the current system date and time, and then format it according to the required pattern. This exercise is a good way to practice working with date and time formatting in C#, which is useful in a variety of applications such as logging, user interfaces, and reporting.



Group

Using Additional Libraries in C#

Objective

1. Use the DateTime class to get the current date and time.
2. Format the date in the required format.
3. Display the date and time in the console.

Create a program to display the current date and time with the following format:

"Today is 6 of February of 2015. It´s 03:23:12"

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    static void Main()
    {
        // Get the current date and time
        DateTime currentDateTime = DateTime.Now;

        // Format the date and time to match the required pattern
        string formattedDate = currentDateTime.ToString("d 'of' MMMM 'of' yyyy");
        string formattedTime = currentDateTime.ToString("HH:mm:ss");

        // Display the result in the specified format
        Console.WriteLine($"Today is {formattedDate}. It's {formattedTime}");
    }
}

 Output

Today is 6 of February of 2015. It's 03:23:12

Share this C# Exercise

More C# Practice Exercises of Using Additional Libraries 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#.