C++基础之求次方

加入头文件

#include

原型:
在这里插入图片描述
示例:

#include
#include
using namespace std;

void main()
{
	double t = pow(2, 3);
	cout << t << endl;
	double x = pow(2.5, 2);
	cout << x << endl;
	system("pause");
}

结果:
在这里插入图片描述

你可能感兴趣的:(C/C++基础,c++,visual,studio,开发语言)