java语言要2的n次方咋写呀
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java语言要2的n次方咋写呀相关的知识,希望对你有一定的参考价值。
函数 math.power2,n
Math.pow(2,n)。
详细解释:
这不就是多个2相乘么,
public class test1
public static void main(String[] args) throws Exception
int a = 1;
int n = 3;
for (int i = 0; i < n; i++)
a = a*2;
System.out.println(a);
参考技术A Math.pow(double m, double n) m的n次方的。百度上都有啊 参考技术B Math.pow(2,n) 参考技术C 使用位移 : 1 << n 参考技术D 1<<n ;//(1左移n个位)就是2的n次方,二进制基础以上是关于java语言要2的n次方咋写呀的主要内容,如果未能解决你的问题,请参考以下文章