For the given program, how many print statements will execute? public static void printshippingCharge (double weight) { if((weight 0.0) && (weight <= 10.0)) { System.out.println(weight * 0.75); } else if((weight > 10.0) && (weight <= 15.0)) { System.out.println(weight * 0.85); } else if ((weight 15.0) && (weight <= 200)) { System.out.println(weight * 0.95); 1 } public static void main(String args[]) { printshippingCharge(18), printShippingCharge (6); printshippingCharge (25); O 2. O 1 O 3 O 9