Hey all
I recently picked up the book "Java the first semester". It uses the EasyIn class to get user input. I have downloaded the file EasyIn.java but I dont know how to make the class accessible from my programs.
As long as the EasyIn class is accessible you can use all the input methods that we have defined in this class
I know I have to put
import EasyIn.*;
at the beginning of my code but in what directory do I put the
EasyIn.java
file so that my program can link to it when it is compiling?
Many thanks
HLA91