gpt4 book ai didi

c++ - C/C++编程中的一个问题

转载 作者:行者123 更新时间:2023-11-30 21:32:09 26 4
gpt4 key购买 nike

我必须有两个条件不同的循环,但循环中的代码是相同的。

像这样:

for (xx; xxxx; xxx)
{
the Code
}

for (yy; yyyy; yyy)
{
the Code
}

问题是代码太长,我只想编写一次代码并执行这两个不同的循环。

如何解决?

最佳答案

也许您应该将那么长的代码块放入函数/方法中,并在两个循环中调用该函数/方法?

type blockOfCode() {
block of code...
return type; //Or if it's is void nothing obviously.
}

for (xx, xxx, xxxx)
blockOfCode();
for (yy, yyy, yyyy)
blockOfCode();

关于c++ - C/C++编程中的一个问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7218730/

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