问题标题:
c++数学函数公式y=e^x+ln(x)-1y和x都是longdouble型写一个函数能够传入y的值,求出相应的x。
问题描述:
c++数学函数
公式y=e^x+ln(x)-1
y和x都是longdouble型
写一个函数能够传入y的值,求出相应的x。
邵金鑫回答:
//#include"stdafx.h"//vc++6.0加上这一行.
#include"stdio.h"
#include"math.h"
voidmain(void){
longdoublex,y,a;
constlongdoublee=2.71828182845904523536;
printf("Typey...ny=");
scanf("%lf",&y);
y++;
x=0.0;
while(x+=0.000001,log(x)+pow(e,x)
点击显示
数学推荐
热门数学推荐