Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ("   -----------------")

 }
share|improve this question
Please use proper formatting. – Rein Henrichs Apr 17 '11 at 17:46
I don't understand the problem, and I don't think you do either. – Robin Green Apr 17 '11 at 18:13
Down voting because your question is overly vague. Please be more precise as to what your question is. – Andrew Eisenberg Apr 23 '11 at 22:27

closed as not a real question by NickLarsen May 12 '11 at 14:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

are you building a swing app or commandline app?

anyway you should have a - while(game condition not fulfilled loop) - in each loop ask for the pair of tiles to be tested - compare - set accordingly - repeat

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.