C语言编写sin函数?求教!

日期:2017-10-03 02:18:10 人气:1

C语言编写sin函数?求教!

C语言中要编写sin函数,实质上要利用sin的泰勒公式,然后根据泰勒公式,将其中的每一项进行分解,最后用循环,累加计算出最终结果 下面用for循环实现sin的算法,程序代码如下: #include #include void main() { int i; float x,sum,a,b; //sum代表和,a为分子,b为分母 char s; printf("please input x"); scanf("%f",&x); s=1
    A+
热门评论