It wont compile!
I know something is probably wrong with my if condition but im unsure of what.
if (weight > 200)
shipping_cost = 49.95;
else if (weight >= 100 & < 200)
shipping_cost = 39.95;
else if (weight >= 50 & < 100)
shipping_cost = 24.95;
else if (weight >= 20 & < 50)
shipping_cost = 15.95;
else
shipping_cost = 11.95;
Thanks