What's wrong with this code?
import java.util.*;
public class Exercise14
{
static Scanner console = new Scanner(System.in);
public static void main(String [] args)
{
int first, t...
iwzApr 26, 2006
First, have you created the IntClass? and is it in the same package as Exercise14?
Your compiler is not able to find IntClass. So, if you've already created it, then make sure you compile everyt...