Uebungsaufgaben_ITFA_2_SS_2025/Exercises/E08_If/Exercise_2.cs
s.schueler.doz 19d199a2ad Initial
2025-02-10 17:06:29 +01:00

14 lines
307 B
C#

namespace Exercises_C_Sharp.E08_If
{
class Exercise_2
{
public static void Start()
{
//Sorgen Sie dafür, dass niemals "Hey" ausgegeben wird.
//Code START
if(true)
//Code ENDE
Console.WriteLine("Hey");
}
}
}