我想得到两个int
元素的所有组合,比如 j 和 i,两者都不应该小于 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循环的情况下这样做吗?