Hi this class is not working what is the problem
___________________________________________________________
class ClassDemo {
public static void main (
String args[]){
String bookID = "A100";
String title = "Java for beginners";
String author = "AMos Tham";
String Publisher = "Tecman";
int edition = 3;
float price = 25.50f;
public void displatDetails(){
System.out.println("The book ID is" + bookID);
System.out.println("The title is" + title);
System.out.println("The auhthor is" + auhtor);
System.out.println("The publisher is " + publisher);
System.out.println("The edition is" + edition)
System.out.println("The book price is " + price);
}
public static void main (String args[]){
ClassDemo c1 = new ClassDemo();
C1.displayDetails();
}}
______________________________________________________________________
can anyone pleas help me thx!!