Buscar
Estás en modo de exploración. debe iniciar sesión para usar MEMORY

   Inicia sesión para empezar


Por supuesto:

Computer Science AQA A level

» Iniciar este curso
(Practica preguntas similares gratis)
Pregunta:

If you were to want a random number between 0 and 10, how would you go about programming one?

Autor: Will Parker



Respuesta:

Random random = new Random(); int randomNumber = random.Next(0, 10); Console.WriteLine(randomNumber);


0 / 5  (0 calificaciones)

1 answer(s) in total