乘方
pow()
该函数在math.h头文件中
例如: 求圆的面积公式
s=3.14*pow(r,2);
例题:
#include<iostream>
using namespace std;
#include<math.h>)
int main()
{
int h;
int r;
cin >> h >> r;
double v = h * 3.14 * pow(r, 2);
int ret = 0;
if (v > 20000)
{
ret = 1;
}
else
{
while (v * ret < 20000)
{
ret += 1;
}
}
cout << ret << endl;
}