sinx、√x时间复杂度c代码

本文介绍了如何用C语言实现sinx和√x函数,并对其时间复杂度进行了分析,探讨了这两个操作在计算效率上的特点。
摘要由CSDN通过智能技术生成

 sinx的c代码:

#include <stdio.h>
#include <math.h>
#include<stdlib.h>
#define eps 1e-6
 
int main()
{
	double x,sinx,item;
	int n=1,sign=-1;
	printf("输入度数:\n");
	scanf("%lf",&x);
	while(x>360)
	{
		x=x-360;//让其值在0~360 
	} 
	x=x*3.14159/180;//转换成弧度
	sinx=x;
	item=x;
	while(fabs(item)>eps)
	{
		item=item*x*x/((n+1)*(n+2))*sign;
		sinx=sinx+item;
		n=n+2; 
	} 
	printf("sinx=%lf\n",sinx); 
	system("pause");
	return 0; 
} 

√x的c代码:

#include <stdio.h>
#include<stdlib.h>
//求绝对值
#define abs(x) (x)>0?(x):(-(x))
#define eps 1e-6
 
int  main()
{
    double val;
    
    //value及精度
    printf("Input value:");
    scanf("%lf",&val);
    if(val < 0 )
    {
        val*=-1;
    }
    double low,high;
    if(val  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值