Hi I'm a new student of java programming. I ran this code, there's a problem but I do not know how to solve it. Please help.
Code:public class Q3 {
double length=5, width=8, height=9, radius=6;
public static double volume(double length, double width, double height) {
double box= length * width * height;
return box;
}
public static void main(String[] args){
System.out.println("The volume of rectangular box is "+ volume());
}
}

