gpt4 book ai didi

c++ - 我正在创建一个按增量计数的程序。我真的很接近,但我无法让程序按决定的增量上升?

转载 作者:行者123 更新时间:2023-11-28 06:10:04 25 4
gpt4 key购买 nike

这是代码。欢迎提出任何建议,但我真的很想为一个类学习 C++,而不仅仅是获得答案。所以,如果你能解释你是如何找到解决方案的,那就太棒了!感谢您的帮助!!

//Looping
#include <iostream>
using namespace std;

int main()
{
int increment;
int input_variable;
bool stop_printing = true;

cout << "Input: ";
cin >> input_variable;
cout << "Increment: ";
cin >> increment;

do
{
int counter = 0;
counter = increment++;

cout << "Result: " << counter << endl;
increment++;
if (increment >= input_variable)
{
stop_printing = false;
}
} while (stop_printing == true);

return 0;
}

最佳答案

改变:

counter = increment++;

到:

counter += increment;

variable++ 是给变量加1。 variable += value 用于将第二个值添加到第一个变量(它等同于 variable = variable + value)。

您还有其他问题:每次循环都将 counter 设置回 0;那应该在循环之前。您正在循环中第二次执行 increment++,这不是必需的。您正在针对输入变量测试 increment,而不是测试 counter

int main()
{
int increment;
int input_variable;
bool stop_printing = true;

cout << "Input: ";
cin >> input_variable;
cout << "Increment: ";
cin >> increment;

int counter = 0;

do
{
counter += increment;

cout << "Result: " << counter << endl;

if (counter >= input_variable)
{
stop_printing = false;
}
} while (stop_printing == true);

return 0;
}

关于c++ - 我正在创建一个按增量计数的程序。我真的很接近,但我无法让程序按决定的增量上升?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31444605/

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