Uebungsaufgaben_ITFS_3_SS_2025/Exercises/E06_Random/Exercise_1.cs
2025-02-10 08:57:36 +01:00

19 lines
406 B
C#

using System;
using System.IO;
using System.Collections.Generic;
namespace Exercises_C_Sharp.E06_Random
{
class Exercise_1
{
public static void Start()
{
//Sorgen Sie dafür, dass eine Zufallszahl auf der Konsole ausgegeben wird.
int i;
//Code START
i = -1;
//Code ENDE
Console.WriteLine(i);
}
}
}