|
本帖最后由 xuminghaoxu 于 2010-5-18 20:58 编辑
public class aaa {
public static void main(String[] args){
int totalcost=500;
if (totalcost>=200&&totalcost<300) {
System.out.println("可获得优惠泉"); }
else {
}
if (totalcost>300&&totalcost<500);{
System.out.println("可获得五十远");
}
else{ ........................................................这里则么会报错
}
if (totalcost>500) {
System.out.println("100yuan");}
else {
System.out.println("你的消费金额不足"); }
}
}
请问为什么加那个else的时候会出错,应该和第一个一样的呀 |
|