已采纳回答 / qq_Unattainable_0
http://www.oracle.com/technetwork/java/javase/downloads/index.html
2016-06-22
已采纳回答 / Ziqi_Wang
if (age>60); else if (40<age<=60);else if (18<age<=40);请把这三句后面的分号 全都去掉另外这两个else if里面的条件也不可以这么写请改成else if(age>=40 && age <= 60)else if(age >=18 && age <40)
2016-06-22
最新回答 / 坐在教室望夕阳
<...图片...>问题好像找到了: 我要启动的是youqudeshiyan.java 为何它却自己寻找启动了 youqudeshiyan1.java 0.0 求各位大神赐教。
2016-06-22
最新回答 / swifitsoso
那就要区分|和||的区别了,http://jingyan.baidu.com/article/17bd8e521dcef185aa2bb847.html
2016-06-22
最新回答 / 用户1222123
private void sort(int []scores){ Arrays.sort(scores); System.out.println("考试成绩的前三名为:"); for(int i = scores.length -1; i >-1 ;i--){ if(scores[i] <0 || scores[i]>100) continue; else if(scor...
2016-06-21
最新回答 / weibo_看我的蟹钳_03649758
public class shiyan2{ public static void main(String[] args) { int age=25; String chengnian; if(age>18) { chengnian="成年" ; }else { chengnian="未成年"; }System.out.println(chengnian);}}
2016-06-21