uh u dont know the formula to calculate the sum of neg and pos? lol
add up all the neg for sum of neg val and add all the pos for sum of pos val....
and for the loop, add another loop that go from how many rows you want in the output. so u want 6 than loop from 1 to 6
here <<for (count = 100; count <= 150; count += 2)
cout << count << " ";>> when you print a number you should caculate how many numbers you've had print, then you will see if it became 6 than you will print a new line, like this:
#include <iostream>
int main () {
int rows, cols, sum,counter=0;
double count;