最赞回答 / ae6623
sorry,楼上有错别字,重新码字。楼上不用看了。
double没有float精读高,大数字的话建议使用float,不过你像工资啊什么的用double就可以了,金额计算一般不使用double和float,这两个玩意适合对科学计数,比如天体距离什么的~~~,金额计算用BigDecimal
2014-06-06
已采纳回答 / 汤小洋
public static void main(String[] args) {
int[] scores = { 89, -23, 64, 91, 119, 52, 73 };
int[] newScores = new int[3];
Arrays.sort(scores);
int num = 0;
int j=0;
for (int i = scores.length - 1; i >= 0; i--) {
if (scores[i] < 0 || scores[i] ...
2014-06-06