Hi,
first of all i want to apologize for my english. I want to simplify the following thing:
for (int i = 0; i <= m; i++)
for (int j = i; j <= m; j++)
for (int k = j; k <= m; k++)
.
.
.
cout << i << " " << j << " " << k << ... << endl;
For example if I give 7 on the beginning, then lets do this loop to the g.
Thank you in advance!