本站提供最佳python fcoin 源码服务,欢迎转载和分享。

【北京商城源码公司】【lua源码垃圾回收】【完整短视频源码】c语言log2函数源码_c语言log2函数实现

2024-11-19 00:52:05 来源:dubbo 加权源码 分类:娱乐

1.用C语言表示:【 F(x) = log2(x) 0<x<10 】

c语言log2函数源码_c语言log2函数实现

用C语言表示:【 F(x) = log2(x) 0<x<10 】

       è¿™é¢˜æœ‰ä»€ä¹ˆéš¾ç‚¹å—?直接写不就行了:

       #include <stdio.h>

       #include <math.h>

       /

*

       F(x)

       = log2(x) 0<x<

       = |x|+sin(x) x<0

       =0 x=0

       =x^2 x>=

       */

       double F(double x)

       {

        return (0<x && x<)

        ?语言l源码c语言北京商城源码公司 log(x)/log(2)

        : (x<0)

        ? fabs(x) + sin(x)

        : (x == 0)

        ? 0

        : x*x;

       }

       int main(int argc, char *argv[])

       {

        int T;

        double x;

        while(scanf("%d",&T) !=EOF)

        {

        while(T--)

        {

        scanf("%lf",&x);

        printf("%.2lf\n",F(x));

        }

        }

        return 0;

       }

【本文网址:http://581.net.cn/html/70c394895981.html 欢迎转载】

copyright © 2016 powered by 皮皮网   sitemap