Search:

Type: Posts; User: Acaul

Search: Search took 0.10 seconds.

  1. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    The deadline passed I had enough marks to pass with what I had plus test scores, I just wanted to see if it could be completed.

    Thank you for trying to help.
  2. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    do you mean end as in } or am i missing something.
  3. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    char[] letters = new char[8];
    for (int i = 0; i < letters.length; i++) {
    TextIO.put("Do you want a consonant or a vowel?");
    choice = TextIO.getlnChar();
    if (choice == 'v')...
  4. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    Ill be honest the loops were done by the lecturer and as i said he didnt stick around to explain what they did, all he said was that we only needed another piece of logic to complete it.

    In the TV...
  5. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    public class Letters {

    /**
    * @param args
    */
    public static void main(String[] args) {
    // TODO Auto-generated method stub
    char choice;
    String word;
  6. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    I entered "letters" and i got that i'm not sure why it printed so many times, i also tried "words" and that just printed the whole word file. Everything else came up with an error.
  7. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    Sorry for double posting but this is the result of the code you posted:



    The selected letter are:[u, a, w, e, x, i, j, e]
    The selected letter are:[u, a, w, e, x, i, j, e]
    The selected letter...
  8. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    This is TextIO



    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;

    import java.util.IllegalFormatException;
  9. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    https://www.dropbox.com/sh/5pilfti0yn0qaed/suR0pqHstc

    Thats all of the files on the project. Eclipse decided that it didnt want to work so it will take me a little while to see what the piece of...
  10. Replies
    20
    Views
    1,710

    [SOLVED] Re: Countdown type game help needed.

    Then final goal of the project is to take 8 user inputs of char that are randomized much like countdown and use these 8 characters too make the longest correct word possible found in a txt file we...
  11. Replies
    20
    Views
    1,710

    [SOLVED] Countdown type game help needed.

    public class letterpuzzle {

    /**
    * @param args
    */
    public static void main(String[] args) {
    // TODO Auto-generated method stub
    char choice;
    String word;
Results 1 to 11 of 13