when you start a java program the jvm is looking for a method main with exactly this signature

public static void main(String[] args)


this is the entry-point of your program. if the jvm...