theremin
Jul 26, 2006
Ok. That's done with. Here's 2 others I need help with that I'm posting in the midst of trying to figure it out in the meantime. #1 an array called "alpha" with 50 components - type is double...
Not quite. What you want is more like:
for (i = 0; i < 5; i++)
{
for (j = 0; j < 10; j++)
{
cout << alpha[10*i + j] << " ";
}
cout << endl;
}