gpt4 book ai didi

c++ - 使用 C++ "for"命令计算指数的创建程序

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

我尝试编写一个程序来使用 for 命令进行指数计算。我编写了出现在下面几行中的代码,但它不起作用。

include <iostream>
using namespace std;
int main()
{
int base=2;
int exp=2;
int result;
for (int i=1; i<e ;i++) {
result=base*base;
}
cout << result <<endl;
return 0;
}

最佳答案

  1. result初始化为1
  2. 在每次迭代中,将result 乘以base
  3. 确保result为运行结果。
int result = 1;
// for (int i=1; i <= exp ; i++) // This will work too.
for (int i=0; i < exp ; i++)
{
result *= base;
}

关于c++ - 使用 C++ "for"命令计算指数的创建程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33136340/

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