本文介绍了我怎么能找到两个最小的功率比没有循环的数字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我如何找到两个最大功率小于一个没有循环的数字?
示例:
How i can find the largest power of two less than a number without loop ?Examples:
5 output = 4.
11 output = 8.
100 output = 64.
推荐答案
Ans=pow(2,floor(log(x)/log(2));
这篇关于我怎么能找到两个最小的功率比没有循环的数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!