nowroot

                                                        指数很重要,比如有一些欧拉公式

                                                       

#include "common.h"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
 
static float Mathematical_modeling = 0;
static int   capacitance_modeling  = 0;
static float value = 0;


int main()
{
    //e^pi*i+1 = 0; 欧拉公式 //可惜i写不出来
    value = (float)exp(2);
    printf("value is e =%d\n", value);
    while (1)
    {
        getchar();
    }
    return 0;
} 

 

分类:

技术点:

相关文章:

  • 2021-12-18
  • 2021-12-18
  • 2021-05-15
  • 2021-12-15
  • 2021-11-30
  • 2022-01-14
  • 2021-12-05
猜你喜欢
  • 2021-10-11
  • 2021-08-26
  • 2021-11-03
  • 2021-12-05
  • 2021-07-11
  • 2022-02-22
  • 2021-10-22
相关资源
相似解决方案