简单!!!
2026-08-02 13:33:51
发布于:浙江
14阅读
0回复
0点赞
cbrt(n) // n的立方根
#include <bits/stdc++.h>
using namespace std;
int main()
{
int y;
cin >> y;
double x = cbrt(y);
printf("%.4f", x);
return 0;
}
全部评论 1
cbrt
2026-08-02 来自 浙江
1
2026-08-02 13:33:51
发布于:浙江
cbrt(n) // n的立方根
#include <bits/stdc++.h>
using namespace std;
int main()
{
int y;
cin >> y;
double x = cbrt(y);
printf("%.4f", x);
return 0;
}
提交答案之后,这里将显示提交结果~
有帮助,赞一个