Ejercicio
Fecha y hora
Objetivo
Crear un programa para mostrar la fecha y hora actual con el siguiente formato:
Hoy es 6 de febrero de 2015. Son las 03:23:12
Código de Ejemplo
// Import the System namespace which provides fundamental classes for date, time, and console operations
using System;
class Program
{
// Main method to execute the program
static void Main()
{
// Get the current date and time
DateTime currentDateTime = DateTime.Now; // Retrieve the current system date and time
// Display the current date and time in the specified format
Console.WriteLine($"Today is {currentDateTime.Day} of {currentDateTime.ToString("MMMM")} of {currentDateTime.Year}. It´s {currentDateTime.ToString("HH:mm:ss")}");
}
}