You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Escribe un programa que genere un array de 2 dimensiones de 100 filas y 10 columnas con números aleatorios del 0 al 99, a través de un bucle anidado (Si no te suenan estos conceptos, ¡búscalos!)
}
/**
* Function name: randomNumber
*
* @return (int)
*
* Inside the function:
* 1. generate random numbers from 0 to 99
*/
/**
* Function name: print2DArray
*
* @param integers (2D array int)
*
* Inside the function:
* 1. nested loop that prints a 2D array using the randomNumber function