Search:

Type: Posts; User: bluurr

Search: Search took 0.11 seconds.

  1. Re: im in a hurry!!Help with a programm..java game of guessing a word

    Might help if you posted the code?
  2. Re: The simpler the program - seemingly the more scope for error :p

    Is this what you wanted?


    import java.io.*;

    public class StringFileReadWrite {

    public static void main (String [] args){
    File inFile = new File("src\\input.txt");
    File...
  3. Replies
    3
    Views
    1,473

    Re: textAnalyser help

    Should get you started.


    public class TextAnalyser {

    private String inputString;

    public TextAnalyser(String inputString) {
    this.inputString = inputString;
    }
  4. Replies
    2
    Views
    1,551

    Re: help with switch statement

    Here i fixed it up for you so you can see where you had gone slightly off.


    import java.util.Scanner;


    public class Assign5_Roberts{

    public static void main(String[] args){
    ...
  5. Replies
    2
    Views
    2,185

    Re: Arrays Of Objects?

    You need initialize the objects.



    public void assignvalues(){
    GetDataMethods one = new GetDataMethods();
    Cell[] cellarray = new Cell[81]; //Declares a Array of the type Cell

    ...
Results 1 to 5 of 5