gpt4 book ai didi

c++ - 如何输入一个正数并打印出输入数字的平方根?

转载 作者:行者123 更新时间:2023-11-30 02:33:19 24 4
gpt4 key购买 nike

我无法找到数字的平方根。我的任务是编写一个程序,提示用户输入一个正数,并打印出从 1 到输入数字的所有数字的平方根。这是我的代码

#include <iostream>
#include <cmath>
using namespace std;
int main() {
double x;
int i;

cout <<"Enter how many numbers you wish to process:";
cin >> x;

for(int i=1;i<=x;i++)

cout<< sqrt(x);

}

我遇到的问题是我只能找到我输入 4 次的数字的平方根,而不是那个数字。我的输出出现在 2222。我需要我的输出看起来像这样

Enter how many numbers you wish to process: 4
1: 1
2: 1.41421
3: 1.73205
4: 2

最佳答案

您得到的正是您所要求的:

cout<< sqrt(x);

这是 x 的平方根,您说的是 4,因此答案总是 2。你想要 i

关于c++ - 如何输入一个正数并打印出输入数字的平方根?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35589917/

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