Skip to content

Commit

Permalink
RC - con sopa de letras de 100x100, teniendo en cuenta que las filas …
Browse files Browse the repository at this point in the history
…están separadas por espacio (32)
  • Loading branch information
berracode committed Sep 15, 2021
1 parent 5ee4942 commit a53e360
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 102 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static void main(String[] args) {

for (int j = 0; j < columna; j++) {
do {
caracteerEntero = (ALEATORIO.nextInt(90 - 65 + 1) + 65); //genera enteros entre 65 y 91, es decir genera letras MAYUSCULAS de la A a la Z
caracteerEntero = (ALEATORIO.nextInt(122 - 97 + 1) + 97); //genera enteros entre 65 y 91, es decir genera letras MAYUSCULAS de la A a la Z
/*
para generar letras de la "a" a la "z" minusculas use: (ALEATORIO.nextInt(122 - 97 + 1) + 97);
*/
Expand Down
Loading

0 comments on commit a53e360

Please sign in to comment.