开发平台(Platform): ubuntu codeblock
问题(Question):每到一定的count,
execfunction1() 会把 execfunction2()和execfunction3()产生的值丢出去
code中是每100笔丢过去一次,但是假如我要连 count%till_times 也就是
最后余数的那些值也要传过去,ex:总共304笔 每100笔丢过去遇到那剩下
4笔就丢不过去,应该怎样改会比较洽当
程式码(Code):
for (i = 0; i < array.size(); i++) {
for (j = 0; j < array2.size(); j++) {
till_times = 100;
if (count > till_times || count = 0) {
count = 0;
execfunction1();
}
if (count <= till_times) {
if (count < till_Times) {
execfuction2();
} else {
execfuction3();
}
count++
}
}
}