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