I am getting array bound error but to my mind, array starts from 0, so what is wrong with this code?
public class Quadratic { public static void main(String
Try and debug it. print the size of args using System.out.println(args.length);. if the size is smaller then 2 your not getting the parameters to your main class.
System.out.println(args.length);