运行 ❯
获取您
自己
的网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <iostream> #include <cmath> using namespace std; int main() { cout << "Square root of 64 is: " << sqrt(64) << "\n"; cout << "Round 2.6 to the nearest integer: " << round(2.6) << "\n"; cout << "The natural logarithm of 2 is: " <<log(2) << "\n"; return 0; }
64 的平方根是:8
将 2.6 四舍五入到最接近的整数:3
2 的自然对数是:0.693147