20 lines
466 B
C#
20 lines
466 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exercises_C_Sharp.E07_DateTime
|
|
{
|
|
class Exercise_2
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Sorgen Sie dafür, dass auf der Konsole die aktuelle Uhrzeit ausgegeben wird.
|
|
int hour = 0;
|
|
int minute = 0;
|
|
//Code START
|
|
|
|
//Code ENDE
|
|
Console.WriteLine("{0}:{1} Uhr", hour, minute);
|
|
}
|
|
}
|
|
} |