Search:

Type: Posts; User: I_need_a_new_name

Search: Search took 0.11 seconds.

  1. Replies
    0
    Views
    1,154

    Trouble Creating a DFS Maze

    import java.util.*;

    public class MazeGenerator
    {
    public void init()
    {
    String Maze[][] = new String [20][20];

    for (int i =0; i <20; i++) {
    for (int j = 0; j < 20; j++) {
  2. Replies
    2
    Views
    1,337

    [SOLVED] Re: convert int to String

    Integer.parseInt(STRING NAME) Maybe?
  3. Replies
    2
    Views
    889

    Problems with "/n"?

    I am writing a toString() Method to print out the results that I got from my program and since the Method return type is a String I cannot use System.out.print. So, I am using "/n" but for some...
Results 1 to 3 of 3