Delete 1.K/HM.1 directory

This commit is contained in:
teolord 2021-10-31 16:44:38 +01:00 committed by GitHub
parent 6f2475eb7c
commit 5c00799a94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,38 +0,0 @@
using System;
namespace PVAukol
{
class Program
{
static void Main(string[] args)
{
int cas = DateTime.Now.Hour;
Console.Write("Vaše jméno: ");
string jmeno = Console.ReadLine();
string doba;
if (cas < 12)
{
doba = "rána";
}
else if(cas >= 12 && cas < 18)
{
doba = "odpoledne";
}
else
{
doba = "večera";
}
Console.WriteLine($"Dobrého {doba}, ti přeji {jmeno}.");
}
}
}