gpt4 book ai didi

c - 为什么这个 POW 循环保留初始值?

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

我刚刚开始学习 C。我编写了这个漂亮的小程序,旨在打印“11111”。但是 pow 函数并没有实现变量,它每次都会改变,并且在其中使用。

我使用 if、goto 并添加 1 创建了循环。这是我所知道的创建循环的唯一方法。

我可以使用我曾经使用过的相同工具来解决这个问题吗?

这是我的代码:

#include <stdio.h>
#include <math.h>

main (void)
{
int b = 0;
int a = 0;
int c = 0;

up:
b = pow (10,a);
c = c + b;
a = a + 1;

if (a = 6)
{
goto stop;
}
else
{
goto up;
}

stop:
printf("%d\n",c);
}

最佳答案

if (a = 6)

a 设置为 6

您的意思可能是:

if (a == 6)

关于c - 为什么这个 POW 循环保留初始值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22773755/

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