Im building the pelmanism game 4 by 4 board which has 8 pairs of letters abcdefgh as it is a 4 by 4 board. and so far Ive came up with the programme below but im having difficulty in getting the programme in revealing the hidden letter which i have inputted in when asked for row and column number, can anyone help much appreciated..
println "This is a game of Pelmanism"
println "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
println "You must match two cards on the 4 by 4 board."
println "Each card has a matching pair of characters."
println "You can turnover two cards at a time to see the characters."
println "The characters that are matched will be removed."
println "The characters that not matched will be hidden."
println (" ")
import javax.swing.*
def int ask (question) {
def txt
txt = JOptionPane.showInputDialog (question)
int answer = Integer.parseInt(txt)
return answer
}
int row, column
row = ask ("Enter row number (number between 1 and 4)")
column = ask ("Enter column number (number between 1 and 4)")
def battle = new Object [4][4]
for (i in 0..3) {
for (j in 0..3) {
battle[i][j] = "X"
}
}
println (" 1 2 3 4")
println (" -----------------")
for (i in 0..3) {
print (i+1)
print (" ")
for (j in 0..3) {
printf ("| %s ", battle[i][j])
}
println("|")
println (" -----------------")
}