while 错了,不知错在哪,请看
public class Array{
public void test(String opt)
{
int count=10;
if(opt.equals("递增"))
while(count<20)
System.out.println(count++);
else if(opt.equals("递减"));
while(count>0)
{
System.out.println(count);
count--;
}
}
public static void main(String[] args)
{
Array ar=new Array();
//String opt="递减";
String opt="递增";
ar.test(opt);
}
}
为什么我把opt="递减"; 时,else if 后面还会执行呢,,???请高手回答一下,谢了。
搜索更多相关的解决方案:
知错
----------------解决方案--------------------------------------------------------
else if后面多了个分号了吧..
----------------解决方案--------------------------------------------------------
谢谢 了,,,楼上的朋友,,搞定了。。。
嘻嘻.............
----------------解决方案--------------------------------------------------------