04/10/2022 19:50
O código é esse:
printf("Valor random: %d", randomEx(1, 6));
> Valor random: 4
Código:
stock randomEx(minnum = cellmin, maxnum = cellmax)
{
return random(maxnum - minnum + 1) + minnum;
}
printf("Valor random: %d", randomEx(1, 6));
> Valor random: 4