精品丰满熟女一区二区三区_五月天亚洲欧美综合网_亚洲青青青在线观看_国产一区二区精选

  • <menu id="29e66"></menu>

    <bdo id="29e66"><mark id="29e66"><legend id="29e66"></legend></mark></bdo>

  • <pre id="29e66"><tt id="29e66"><rt id="29e66"></rt></tt></pre>

      <label id="29e66"></label><address id="29e66"><mark id="29e66"><strike id="29e66"></strike></mark></address>
      學(xué)習啦>學(xué)習英語>專業(yè)英語>計算機英語> c語言中pow的用法

      c語言中pow的用法

      時間: 長思709 分享

      c語言中pow的用法

        c語言中pow的用法的用法你知道嗎?下面小編就跟你們詳細介紹下c語言中pow的用法的用法,希望對你們有用。

        c語言中pow的用法的用法如下:

        原型:extern float pow(float x, float y);

        用法:#include

        功能:計算x的y次冪。

        說明:x應(yīng)大于零,返回冪指數(shù)的結(jié)果。

        舉例:

        // pow.c

        #include

        #include

        #include

        void main()

        {

        printf("4^5=%f",pow(4.,5.));

        getchar();

        }

        #include

        #include

        void main( void )

        {

        double x = 2.0, y = 3.0, z;

        z = pow( x, y );

        printf( "%.1f to the power of %.1f is %.1f ", x, y, z );

        }

        Output

        2.0 to the power of 3.0 is 8.0

      533298