题解 | #使徒袭来#
使徒袭来
https://ac.nowcoder.com/acm/problem/209794
include <bits/stdc++.h>
using namespace std;
int main()
{
double n;
scanf("%lf", &n);
double m = pow(n, 1.0 / 3);
printf("%.3lf\n", m + m + m);
return 0;
}
使徒袭来
https://ac.nowcoder.com/acm/problem/209794
include <bits/stdc++.h>
using namespace std;
int main()
{
double n;
scanf("%lf", &n);
double m = pow(n, 1.0 / 3);
printf("%.3lf\n", m + m + m);
return 0;
}
相关推荐