class Demo
{
public static int num(double a,double b)
{
int i;
for(i=0;a<=b;i++)
{
a=a*2;
}
return i;
}
public static void main(String[] args)
{
double page = 0.001;
double hill = 8848.0;
System.out.println(num(page,hill));
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |