Пожалуйста, помогите мне сделать эту сумму и разбить массив вот так.
arr[]={1,3,2,4,6,7,8,9,10, 11,12,16,5,8,7,8,4,6}; split=2; // the arr[] will be divide in 2(no of splits) parts each with equal elements split=1,2,3...n skip=2; // skip is no of element to be skipped. skip=1,2,3...n size of res[] should be accordingly. then res[0]=15 //1+4+8 res[1]=18//3+6+...