其他分享
首页 > 其他分享> > 计算自行车踏板圆杆的最小半径(需要运用到Pow函数)

计算自行车踏板圆杆的最小半径(需要运用到Pow函数)

作者:互联网

首先我们需要用到Pow函数需要加头文件#include
题目背景在这里插入图片描述
此题只用带入数据计算即可不难。
我们需要指导Pow函数的用法,如果求8开根号可以用pow(8.0,1.0/2.0)依次理解pow(double x, double y) 返回x的y次幂。再用数据接受就可以 附上源代码

#include <iostream>
#include<cmath>
using namespace std;
#define pi 3.1415926
int main()
{
	/*********begin*********/
	float d;float p;float s;float r;float r3;
	cin>>d;cin>>p;cin>>s;
	r3=(d*p)/(pi*s);
	r=pow(r3,1.0/3.0);
cout<<r;
	
	

	/*********end*********/
}

标签:r3,Pow,float,cin,踏板,圆杆,pow,include
来源: https://blog.csdn.net/qq_53539629/article/details/119429562