“Número aleatorio” Código de respuesta

Generando un número aleatorio

public int getRandomNumber(int min, int max) {
    return (int) ((Math.random() * (max - min)) + min);
}
Amused Alligator

Número aleatorio

function randomInteger(min, max) {
  return Math.floor(Math.random() * (max - min + 1)) + min;
}
Disturbed Duck

generador de números aleatorios

// C program to generate random numbers
#include <stdio.h>
#include <stdlib.h>
#include<time.h>
 
// Driver program
int main(void)
{
    // This program will create different sequence of
    // random numbers on every program run
 
    // Use current time as seed for random generator
    srand(time(0));
 
    for(int i = 0; i<4; i++)
        printf(" %d ", rand());
 
    return 0;
}
Stupid Sandpiper

número aleatorio

import random                                    # Import random libary
minimum = 1                                      # Minimum number
maximum = 10                                     # Maximum number
random_number = random.randint(minimum,maximum)  # Generate random number
print(random_number)                             # Print random number
Courageous Cardinal

Número aleatorio

    System.out.println(Math.random());  
Javasper

Respuestas similares a “Número aleatorio”

Preguntas similares a “Número aleatorio”

Más respuestas relacionadas con “Número aleatorio” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código