Random number/dice role generator | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Random number/dice role generator

I'm very (very) new to this but I used another app to make a random dice roll generator - where each number linked to a different picture. Each picture denoted something to do in a day off. How easy would it be to recreate that from basics?

18th Sep 2017, 6:12 PM
Helen Stirling
Helen Stirling - avatar
1 Answer
+ 4
You could search how to get random numbers in Playgrounds. Here's an example you'd do: int random = Random.nextInt(); int diceRoll = (random % 6) +1; //Because a dice has 6 sides. Then you can use diceRoll to act as a dice that had been rolled. Here's a few examples: https://code.sololearn.com/cbruTEsBYLtv/?ref=app https://code.sololearn.com/c4uqgMbOS09o/?ref=app https://code.sololearn.com/c7YPsJNZJk8b/?ref=app https://code.sololearn.com/coIPiAnFxnoq/?ref=app https://code.sololearn.com/czWiR5oHtz83/?ref=app https://code.sololearn.com/w15ymgODle4h/?ref=app https://code.sololearn.com/WSgfsRgTJU69/?ref=app
18th Sep 2017, 6:27 PM
Limitless
Limitless - avatar