Hallo,
Ich habe erst seit kurzem mit dem Programmieren angefangen jetzt habe ich eine Frage zu dem hier ?
using System;
using System.Collections.Generic;
using System.Text;
namespace LOTTO
{
class Program
{
static void Main(string[] args)
{
int i;
string nochmal;
int tipp1;
int tipp2;
int tipp3;
int tipp4;
int tipp5;
int tipp6;
int anz;
int y;
int [] tipp = new int[6];
anz = 0;
Random r = new Random();
do
{
Console.WriteLine("Lotto Zahlen");
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Wie viele Tipps wollen sie");
anz = Convert.ToInt32(Console.ReadLine());
y = 1;
while (y <= anz)
{
for (i = 0; i < 6; i++)
{
tipp = r.Next(1, 45);
}
Console.WriteLine("Möchten sie Wiederholen");
nochmal = Console.ReadLine();
Console.Clear();
}
while (nochmal == "y");
}
}
}
Und zwar ich will Loto Zahlen machen aber sie dürfen sich nicht wiederholen kann mir jemand den Code aufschreiben und mir beschreiben was der Teil macht weil
Ich weiß nähmlich nicht was ich in die Schleifen schreiben soll
ich schaff das einfach nicht.
Danke mfg Anfänger XD
AnfängerXD Gast |