아래의 소스는 Hunt the Wumpus(1973) 를 Java코드로 구현한 것입니다.package javaDev;import java.util.Random;import java.util.Scanner;public class HuntTheWumpus { static int[][] S = new int[20][3]; // Cave system static int[] L = new int[6]; // Positions (player, wumpus, pits, and bats) static int[] M = new int[6]; // Temporary storage of L static int A = 5; // Number of arrows static int F = 0; // F..