码迷,mamicode.com
首页 > 其他好文 > 详细

创建一个用二分法求近似根的函数

时间:2017-05-29 17:26:53      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:while   put   log   else   read   roo   alt   lease   input   

root <- function(){
  x = as.numeric(readline("please input the number"))
  if (x<0){
    cat("The number you input is illegal","\n")
    root()
  }
  else{
    epsilon = 0.001
    numGusses = 1
    low = 0
    if(x>1){
      high = x
      
    }
    else{
      high = 1
    }
    ans = (high+low)/2
    while(abs(ans*ans-x)>epsilon){
      numGusses = numGusses+1
      if(ans*ans < x){
        low=ans
      }
      else{
        high = ans
      }
      ans = (high+low)/2.0
    }
    cat("numGuesses = ",numGusses,"\n")
    cat (ans , "is close to square root of", x ,"\n")
  }  
}

 

技术分享

 

创建一个用二分法求近似根的函数

标签:while   put   log   else   read   roo   alt   lease   input   

原文地址:http://www.cnblogs.com/wannaer/p/6918234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!