gpt4 book ai didi

c++ - 我怎样才能改变这个循环不使用继续?

转载 作者:太空狗 更新时间:2023-10-29 19:40:59 26 4
gpt4 key购买 nike

我使用 continue 语句编写了这个简单的程序并获得了所需的输出。

for(m=1;m<=3;m++)
{
for(n=1;n<=2;n++)
{
if(m==n)
continue;
cout<<m<<" "<<n<<endl;
}
}

输出:

1  2
2 1
3 1
3 2

现在我想要它而不使用 coninue 语句。有什么办法可以做到吗?

最佳答案

就这么简单:

if (m != n) {
cout<<m<<" "<<n<<endl;
}

关于c++ - 我怎样才能改变这个循环不使用继续?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5741203/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com