Problems with error during compilation

Most times when i try to compile this is what i do get,i am a complete newbie and i will like to know what i am doing that is wrong.Most of the tie the errors are always cannot find symbol.Below is an example:

C:\Documents and Settings\User\My Documents\Bicycle.java:19: cannot find symbol

symbol : method printIn(java.lang.String)

location: class java.io.PrintStream

System.out.printIn("cadence:"+cadence+"speed:"+speed+"gear:"+gear);

^

1 error

Tool completed with exit code 1

This is the program i tried to run

import java.lang.*;

class Bicycle{

int cadence=0;

int speed=0;

int gear=1;

void changeCadence(int newValue) {

cadence=newValue;

}

void changeGear(int newValue) {

gear=newValue;

}

void speedUp(int increment) {

speed=speed+increment;

}

void applyBrakes(int decrement) {

speed=speed-decrement;

}

void printStates() {

System.out.printIn("cadence:"+cadence+"speed:"+speed+"gear:"+gear);

}

}

[1088 byte] By [bushetaa] at [2007-11-27 6:32:06]
# 1
Only thought I have is spelling. You possibly have print<uppercase i>n instead of print<lowercase letter before m>n.
floundera at 2007-7-12 17:57:19 > top of Java-index,Java Essentials,New To Java...
# 2
flounder is correct, your System.out.println()within the printStates() method uses an uppercase 'I' (eye) instead of the lowecase 'l' (el) prior to the last 'n'.
Kevin_Cloutiera at 2007-7-12 17:57:19 > top of Java-index,Java Essentials,New To Java...
# 3
Thanks so much for the advice it really works but when i try to run it,it is giving me"exception in thread "main" java.lang.NoSuchMethodError: main"
bushetaa at 2007-7-12 17:57:19 > top of Java-index,Java Essentials,New To Java...
# 4
You are trying to run a class that has nopublic static void main(String[] args)method!
Jamwaa at 2007-7-12 17:57:19 > top of Java-index,Java Essentials,New To Java...
# 5
Please can you help me to put the necessary codes or make the necessary correction for me to run this program.I really need help as i know next to nothing and i've just started developing myself.
bushetaa at 2007-7-12 17:57:19 > top of Java-index,Java Essentials,New To Java...
# 6
You were told in reply #4 you need a main method. Main methods should have been one of the first things you learnt about. Go back and study your notes/textbook.
floundera at 2007-7-12 17:57:19 > top of Java-index,Java Essentials,New To Java...