1
resposta

Duvida sobre sorteador de numero

alguém sabe me dizer oq esta acontecendo de errado nesse código, era para o alert aparecer com o numero aleatório, porem n estar funcionado.

function sortear(){ let quantidade = parseInt (document.getElementById('quantidade').value); let de = parseInt (document.getElementById('de').value); let ate = parseInt (document.getElementById('ate').value);

let numero = obterNumeroAleatorio(de, ate);
alert(numero);

}

function obterNumeroAleatorio(min, max){ return Math.floor(math.random() * (max - min + 1)) + min; }

1 resposta
import javax.swing.JOptionPane;

public class Main {
    public static void main(String[] args) {
        // Gerar um número aleatório entre 1 e 100
        int numeroAleatorio = (int) (Math.random() * 100) + 1;

        // Exibir o número aleatório em um alerta
        JOptionPane.showMessageDialog(null, "O número aleatório é: " + numeroAleatorio);
    }
}