How to simulate rolling two dice (game cubes) with values 1–6 in Kotlin

1 Answer

0 votes
import kotlin.random.Random

fun rollDice(): Int =
    Random.nextInt(1, 7)   // 1–6 inclusive

fun main() {
    val dice1 = rollDice()
    val dice2 = rollDice()

    println("Dice 1: $dice1")
    println("Dice 2: $dice2")
}




/*
run:

Dice 1: 4
Dice 2: 6

*/



 



answered Feb 18 by avibootz

Related questions

...