They teach this in CIS.....This aint no serious math...fukk yall talkin about..I just wrote this 30 sec's ago
String[] months = {"Oct", "Nov", "Dec","Jan", "Feb",
"Mar","Apr", "Jun", "Jul","Aug", "Sep"};
int[] planned = {100,300,200,400,500,300,250,345,564,111,434,345};
int[] actual = {565,345,675,345,233,100,567,765,342,567,222,111};
List<MgmtViewBean> viewBeans = new ArrayList<MgmtViewBean>();
for (int i = 0; i < months.length; i++)
{
MgmtViewBean mvBean = new MgmtViewBean();
mvBean.setPlannedInd(planned);
mvBean.setActualInd(actual);
viewBeans.add(mvBean);
}