小问题,希望大家帮个忙解决一下
int divn, dept, nDeartments,nEmployees,id;
float pay;
boolean trouble=false;
for(divn,divn<nDivisions,divn++)
{
nDepartments=getDepartmentCount(divn);
for (dept=0;dept<nDepartments;dept++)
{
nEmplyees=getEmployeeCount(divn,dept); //这段是什么意思
for(id=0:id<nEmployees;id++)
{
pay=getPayAmount(divn,dept,id); //这段是什么意思,怎么读
if(pay<0)
{
trouble=true;
break;
}
printCheck(divn,dept,id,pay); //还有这段怎么读
balance-=pay;
}
if(trouble)
break;
}
if(trouble)
break;
}
俺以前是学C++的,刚开始学这个,希望高手指点一下