这个问题的C++代码呢
时间: 2024-02-09 21:09:27 浏览: 58
对不起,我误解了你的问题。以下是一个 C++ 代码示例,它要求用户输入一个数字,然后输出它的平方根:
```
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double num, squareRoot;
cout << "Enter a number: ";
cin >> num;
squareRoot = sqrt(num);
cout << "The square root of " << num << " is " << squareRoot << endl;
return 0;
}
```
这个程序使用了 `<cmath>` 中的 `sqrt` 函数来计算平方根。
阅读全文