執行 ❯
建立您
自己的
網站
×
更改方向
更改主題,深色/淺色
前往 Spaces
#include <iostream> #include <cmath> using namespace std; int main() { cout << cbrt(0) << "\n"; cout << cbrt(1) << "\n"; cout << cbrt(27) << "\n"; cout << cbrt(0.64) << "\n"; cout << cbrt(-27) << "\n"; return 0; }
0
1
3
0.861774
-3