if you want to grab JAVA in time, start thinking objects. First look at your self as an object, as a class. Then think of different things you can do, and your habbits. Fro example, let me develop a simple class for you as a person.
public class Cyberomin {
private int myAge;
private String myEyeColor;
private double myAnnualIncome;
public Cyberomin(){ // this is a default constructor, that initialises the variables in your class body
myAge = 0;
myEyeColor = null;
myAnnualIncome = 0.00;
}
public void setAge(int age){
myAge = age;
}//you code setIncome, and setEyeColor in a similar way. you can also code the getter methods
public static void main(String [] args){
System.out.println("The following are Cyberomin's charateristics. His age is " + myAge + " Color of Eye " + myEyeColor + "Annual Income " + myAnnualIncome);
}
}
This is a simple program for you. Yopu can learn java with a book, Java Programming for Dumies (forgot the authur but you can search online). Get me on
eddyaftermath@yahoo.com so we can chat more about java. WELCOME TO THIS MYSTICAL WORLD OF JAVA PROGRAMMING.