1. 51单片机,c语言写程序,什么数学运算都可以吗加减乘除,对数,指数,三角函数,平方,根号,立方,
KEIL C51 有个数学函数库(和C语言的 数学函数库类似)
指数,三角函数,平方,开方,立方都有的。具体可以看 相关的资料。
数学函数库 需要看头文件MATH.H
例如:
1.指数函数 float exp(float x)
2.对数函数 float log(float x) ,float log10(float x)
3.平方根:float sqrt(float x)
3.三角函数 :
float cos(float x),float sin(float x),float tan(float x)
float acos(float x),float asin(float x),float atan(float x),float atan2(float y, float x)
float cosh(float x),float sinh(float x),float tanh(float x)
等很多了,具体去看相关的资料吧
希望我的回答对你有所帮助,很高兴和你一起讨论单片机编程技术。