• 大小: 886B
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-01-01
  • 语言: 其他
  • 标签: log10  

资源简介

呵呵,比较有用哦,计算log10, C代码,管用。

资源截图

代码片段和文件信息

#include 
#include 
float error=0.0;
 float logx(float x1)
  {
         float x=x1*1.0;
         float ylogx;
         int i=1;
         int n=0;
         int k=1; 
         y=x;
        if(x<=0)
        {
           printf(“wrong!\n“);
           return error;
        }
       while(x<1)
       {
        x*=10;
        n--; 
       }
     while (x>=10)
      {
         x/=10;
        n++;
     

评论

共有 条评论

相关资源