Lately...I've been learning "R"...that weird programming language aimed for Statistics and Statistical programming...and I really like it...so as usual, I needed to create my own Decimal to Binary application -;)
binary<-function(p_number) {
bsum<-0
bexp<-1
while (p_number > 0) {
digit<-p_number %% 2
p_number<-floor(p_number / 2)
bsum<-bsum + digit * bexp
bexp<-bexp * 10
}
return(bsum)
}
p_number<-readline("Decimal number?: ")
p_number<-as.numeric(p_number)
bsum<-binary(p_number)
cat("Binary: ", bsum)
For this example, I used RStudio.
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjn7dLueNdugcn-YfEVIeLh26u7S7eiEy3psVZhPGV0y11ZnRP-IW3Zon7Ba9Jt9x77yFgCd-cYqL3i2GufxGk2vONWo7kuxmvxNgWFpwkus6TuMrTdxeEajSlJJQ8JCp1GvDXG96mkyyLk/s400/RDecToBin.png)
Greetings,
Blag.
No hay comentarios:
Publicar un comentario