zoukankan      html  css  js  c++  java
  • cabs函数

    函数简介
      函数名: cabs(_cabs)   
        功 能: 计算复数的绝对值   
        所属库:math.h  
       用 法: double _cabs(struct _complex z);  
       参数说明:   struct _complex 定义在math.h下   
        struct _complex {  
             double x,y;   
                          } ;
    程序示例
      #include <stdio.h>
      #include <math.h>
      int main(void)   
      {   
      struct complex z;  
     double val;
     z.x = 2.0;  
     z.y = 1.0;  
     val = cabs(z);  
     printf("The absolute value of %.2lfi %.2lfj is %.2lf", z.x, z.y, val);   return 0;   }   
    下面的例子来自MSDN[1]   
    #include <math.h>   
    #include <stdio.h>   
    int main( void )   
    {   struct _complex number = { 3.0, 4.0 };
      double d;  
       d = _cabs( number );
      printf( "The absolute value of %f + %fi is %f\n",number.x, number.y, d);  
    }
  • 相关阅读:
    BZOJ 1565 植物大战僵尸
    BZOJ 1497 最大获利(最大权闭合子图)
    BZOJ 1070 修车(最小费用流)
    BZOJ 2879 NOI2012美食节
    PHPCMS模板里面使用自定义函数
    邓_phpcms_数据库
    邓_ phpcms_
    dedecms====phpcms 区别==[工作]
    邓_html_图片轮播
    dedecms_插件
  • 原文地址:https://www.cnblogs.com/eagleking0318/p/6521315.html
Copyright © 2011-2022 走看看