gpt4 book ai didi

c - C 循环问题中墙上的啤酒

转载 作者:行者123 更新时间:2023-11-30 14:54:26 25 4
gpt4 key购买 nike

我已经使程序运行良好,但是输出并不完全符合我的要求。它输出“99瓶啤酒在墙上,99瓶啤酒,拿一瓶下来传递,99瓶啤酒在墙上”并相应地下降。但是,我希望最后一个数字值为 98,而不是 99。依此类推。

当我使用 numBeers-- 时,它可以工作,但有这个问题。当我使用 numBeers - 1 时,它只是不断循环 99,到 98,到 99,到 98,如果可以理解的话。

我怎样才能让它从最后一个数字中减去 1,并继续下降到 0?

#include <stdio.h>

int main(int argc, char * argv[]) {
int numBeers;

for (numBeers = 10; numBeers >= 0; numBeers = numBeers) {
printf("%d bottles of beer on the wall, %d bottles of beer\n", numBeers);
printf("Take one down, pass it around, %d bottles of beer on the wall.\n\n",
numBeers - 1);
}

return 0;
}

最佳答案

在这种情况下必须更新循环变量。由于该循环给自身分配了相同的值,因此可能会导致无限循环。所以尝试这样做

for (numBeers = 99;numBeers >= 1;numBeers = numBeers - 1)

关于c - C 循环问题中墙上的啤酒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46735284/

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