import static java.lang.Math.pow;
public class Power2
{
public static void sampleMethod(int y)
{
long r=0;
for(int i=0;i<=y;i++)
{
r =long(Math.pow(2,i));
System.out.println("2*"+i+"="+r);
}
}
}
答案 0 :(得分:5)
强制转换需要括号
r = (long) Math.pow(2,i);
^ ^