gpt4 book ai didi

c++ - C++ 中的指数,使用循环

转载 作者:太空狗 更新时间:2023-10-29 23:36:12 25 4
gpt4 key购买 nike

<分区>

我需要一些帮助。我想在给定实值 a 和正值整数 x 的情况下计算 ax

我的程序:

#include <iostream>
using namespace std;

int main()
{
int a, x;

cout << "Input a: ";
cin >> a;
cout << "Input x: ";
cin >> x;

for (int i=0; i<=x; i++)
a= a*a;
cout << "The answer is: " << a;
}

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