我正在盡我所能做這個程序,它是讓程序,讓用戶滾動兩個骰子儘可能多,但骰子滾動不能顯示爲數字,但作爲數字,但作爲一個圖像。C#骰子滾動程序與圖像
如
[O]
爲1.
模具輥我還沒有作出該程序的循環代碼但只知道如何使隨機數的我只是無法弄清楚如何製作圖像的數組列表,並讓代碼實際使用圖像而不是數字......如果你知道我的意思。
這是我的代碼到目前爲止,感謝您的幫助!
int[] DiceUno = new int[6];
int[] DiceDos = new int[6];
Random rnd = new Random();
Console.WriteLine("This program will allow you to roll two dice");
Console.WriteLine("\nAs many times as you want");
Console.WriteLine("\n\nWhen you want to exit the program, please type (exit)");
Console.WriteLine("\nPress any key to begin rolling");
Console.Read();
for (int i = 0; i < 1; i++)
{
int diceRoll = 0;
diceRoll = rnd.Next(6);
DiceUno[diceRoll]++;
Console.WriteLine("Dice 1 is rolled a: {0}", diceRoll + 1);
diceRoll = rnd.Next(6);
DiceDos[diceRoll]++;
Console.WriteLine("Dice 2 is rolled a: {0}", diceRoll + 1);
}
}
}
}
我不能幫助編碼,但死亡的複數是骰子。骰子沒有意義。把它丟去外面。 – 2012-02-29 00:00:19
那些真正的圖像還是隻是在數字的周圍畫出括號? – 2012-02-29 00:31:01
我也是這麼認識的。忽略我的答案,如果你的意思是像jpegs的實際圖像,而不僅僅是ascii圖像。 – 2012-02-29 00:32:21