gpt4 book ai didi

c - 如何在 C 中请求一个 int,然后将其减去 5

转载 作者:行者123 更新时间:2023-11-30 19:58:45 25 4
gpt4 key购买 nike

我有一些非常糟糕的代码需要重新编写。我正在学习 C 语言初学者,无法理解循环。有人可以帮助我吗?

{
int partone, answer;

printf("Please enter an integer, then press enter: ");
scanf("%d", &partone);

while (partone > 1)
{
answer = partone - 5;
printf("Let me count backwards... %d.", answer);
}
printf("done");

return 0;
}

最佳答案

你永远不会递减partone,所以它将永远循环。

您可以执行 partone--partone -= 5,具体取决于您想要减少的量。

关于c - 如何在 C 中请求一个 int,然后将其减去 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21785862/

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