J
JorenNOJUAHjebazd
Guest
I have to make a program that gives a 10x10 table with all random numbers.
If the input number would be in the random table more then 3 times the backgroundcolor schould go red.
If it isnt in the list for +3 times the backround must be green.
//titel
Console.Title = "GokTabel";
//declaratie van de variabelen
int intrij, intkolom, intgokgetal, intgetal;
Random objrandom = new Random();
string struitvoer;
const int intaantal = 10;
//invoer
Console.WriteLine("Geef een getal");
intgokgetal = Convert.ToInt32(Console.ReadLine());
//beginwaarde
struitvoer = "";
intgetal = 0;
//verwerking
for (intrij = 1; intrij <= intaantal; intrij++)
{
for (intkolom = 1; intkolom <= intaantal; intkolom++)
{
struitvoer = struitvoer + Convert.ToString(objrandom.Next(1,101)) + "\t";
if (intgetal == intgokgetal)
{
}
}
struitvoer = struitvoer + "\n";
}
//uitvoer
Console.WriteLine(struitvoer);
Console.ReadLine();
Continue reading...
If the input number would be in the random table more then 3 times the backgroundcolor schould go red.
If it isnt in the list for +3 times the backround must be green.
//titel
Console.Title = "GokTabel";
//declaratie van de variabelen
int intrij, intkolom, intgokgetal, intgetal;
Random objrandom = new Random();
string struitvoer;
const int intaantal = 10;
//invoer
Console.WriteLine("Geef een getal");
intgokgetal = Convert.ToInt32(Console.ReadLine());
//beginwaarde
struitvoer = "";
intgetal = 0;
//verwerking
for (intrij = 1; intrij <= intaantal; intrij++)
{
for (intkolom = 1; intkolom <= intaantal; intkolom++)
{
struitvoer = struitvoer + Convert.ToString(objrandom.Next(1,101)) + "\t";
if (intgetal == intgokgetal)
{
}
}
struitvoer = struitvoer + "\n";
}
//uitvoer
Console.WriteLine(struitvoer);
Console.ReadLine();
Continue reading...