博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
x的x次幂的值为10,求x的近似值
阅读量:5279 次
发布时间:2019-06-14

本文共 413 字,大约阅读时间需要 1 分钟。

public class Main {      static double eps = 1e-7;      public static void main(String[] args){          double l = 2,r = 3,mid;          while(l+eps < r){              mid = (l+r)/2;              if(Math.pow(mid,mid) < 10)                  l = mid;              else                  r = mid;          }          System.out.printf("%.6f\n",l);      }  }

 

转载于:https://www.cnblogs.com/tudou1179006580/p/6670528.html

你可能感兴趣的文章
leetcode[71]Simplify Path
查看>>
团队项目测评博客
查看>>
discuz 文件模板edit
查看>>
查看CPU数量和核心数
查看>>
Android异步加载网络图片
查看>>
python学习之 - XML
查看>>
css问题小计
查看>>
Laravel学习笔记(三)数据库 数据库迁移
查看>>
ORACLE查看并修改最大连接数
查看>>
box-flex不均分问题
查看>>
Python--GIL 详解
查看>>
Oracle数据导入Mysql中
查看>>
BZOJ-4424 &&CodeForces-19E Fairy DP+dfs (Link-Cut-Tree可A)
查看>>
MongoDB学习笔记——聚合操作之group,distinct,count
查看>>
大道至简读后感(第四章)
查看>>
IDA IDC Tutorials: Additional Auto-Commenting
查看>>
k8s-存储卷1-十二
查看>>
在Android中Intent的概念及应用(二)——Intent过滤器相关选项
查看>>
数据库备份问题
查看>>
前端面试题(4)iframe有哪些优点?iframe缺点是什么?
查看>>