ASCII ART y Clases

This commit is contained in:
Benito 2025-02-21 09:29:46 -06:00
parent efac50a182
commit 1910062d99
4 changed files with 71 additions and 0 deletions

62
ASCIIPuzzle.java Normal file
View File

@ -0,0 +1,62 @@
import java.util.*;
public class ASCIIPuzzle {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Imagen ASCII original ordenada
String[] originalArt = {
" *** ", // 1
" ** ** ", // 2
" ** ** ", // 3
" ** ** **** ", // 4
" ** ** ** ****", // 5
" ** ** * ** **", // 6
" ** * * ** *** **", // 7
" ** * * ** ** *", // 8
" ** ** ** ** **",// 9
" ** ** **", // 10
" * *", // 11
" * *", // 12
" * 0 0 *", // 13
" * / @ \\ *", // 14
" * \\__/ \\__/ *", // 15
" * W *", // 16
" ** ** ", // 17
" ***** "// 18
};
// Crear una copia desordenada
List<String> scrambledArt = new ArrayList<>(Arrays.asList(originalArt));
Collections.shuffle(scrambledArt);
while (true) {
// Mostrar el arte desordenado
System.out.println("\nOrdena el arte ASCII:");
for (int i = 0; i < scrambledArt.size(); i++) {
System.out.println((i + 1) + ": " + scrambledArt.get(i));
}
// Pedir cambio de líneas
System.out.print("\n¿Qué línea cambias? (1-" + scrambledArt.size() + "): ");
int firstIndex = scanner.nextInt() - 1;
System.out.print("¿Por cuál la cambias? (1-" + scrambledArt.size() + "): ");
int secondIndex = scanner.nextInt() - 1;
// Intercambiar líneas
Collections.swap(scrambledArt, firstIndex, secondIndex);
// Verificar si está ordenado
if (Arrays.equals(scrambledArt.toArray(), originalArt)) {
System.out.println("\n¡Felicidades! Has ordenado el arte ASCII:");
for (String line : originalArt) {
System.out.println(line);
}
break;
}
}
scanner.close();
}
}

3
Clase1.java Normal file
View File

@ -0,0 +1,3 @@
class Clase1{
// Esta es una clase hecha por benito #1
}

3
Clase2.java Normal file
View File

@ -0,0 +1,3 @@
class Clase2{
// Esta es una clase hecha por benito #2
}

3
Clase3.java Normal file
View File

@ -0,0 +1,3 @@
class Clase3{
// Esta es una clase hecha por benito #3
}