jとiという2つの要素のすべての組み合わせを取得したいのですがint
、どちらも3より小さくしてはいけません。私が試したのは次のとおりです。
for (int i = 10; i>=3;i--)
{
for (int j = 23, j >= 3,j--)
{
std::cout << " the i value " << i
<< "the j value :" << j << std::endl; // since I'm using those combinations
// for the rest of my code I wrote
// this to keep things simple
}
}
とにかくforループなしでこれを行うのですか?