Forum: Java Dec 4th, 2008 |
| Replies: 1 Views: 548 Okay so this is the deal. I want to make a call to a routine that replaces all of one certain type of integer with a number. I have it to where it is replaceing the first, however, it misses the tail... |
Forum: Java Dec 4th, 2008 |
| Replies: 4 Views: 505 That really helped my thought process. I figured it out! lol took me a while but i finally got what you where saying. I did it with a try catch block and it worked out perfectly. Thanks again! |
Forum: Java Dec 3rd, 2008 |
| Replies: 4 Views: 505 Basically I have objects in the SimpleList Routines. I need to manipulate them using recursion. Here is the code for SimpleList
public class SimpleList<E> {
private ListNode<E> list;
... |
Forum: Java Dec 3rd, 2008 |
| Replies: 4 Views: 505 public static boolean member(Integer obj,SimpleList<Integer> l);
// returns true if obj is a member of l, false otherwise
{
}
the question is how could I use recursion to show that there... |
Forum: Java Sep 16th, 2008 |
| Replies: 3 Views: 397 import java.io.*;
import java.util.StringTokenizer;
public class Proj21110
{
private static int MAX_UNKNOWNS = 10;
public static void main (String[] args)
{
headerMessage(); // print... |
Forum: Java Nov 15th, 2007 |
| Replies: 10 Views: 1,383 public static void ReadArray(int []array)
{
Scanner scan = new Scanner(System.in);
for (int index = 0; index < array.length; index ++)
{
System.out.println("Please enter element" + (index+1) +... |