MissouriTiger
Programmer
I can't believe I'm getting 9 errors from a single array declaration. I sure would be grateful if someone would tell me (show mw) what I'm doing wrong here.
final double dblPlanChgs[][] = new double[3][3];
dblPlanChgs[0][] = {10.00,35,0};
dblPlanChgs[1][] = {0.00,25,10};
dblPlanChgs[2][] = {5.00,15,5};
Also, would anylike to recommend an IDE? I'm using JEDPlus, which I like, but it's extremely basic. It doesn't do a lot of debugging for you.
final double dblPlanChgs[][] = new double[3][3];
dblPlanChgs[0][] = {10.00,35,0};
dblPlanChgs[1][] = {0.00,25,10};
dblPlanChgs[2][] = {5.00,15,5};
Also, would anylike to recommend an IDE? I'm using JEDPlus, which I like, but it's extremely basic. It doesn't do a lot of debugging for you.