java编写一个程序,100以内随即选出10个偶数降序排列。
2个回答
展开全部
package com.linkcm.test;
/**
* Test类
* @author Andy
*/
public class Test {
public static void main(String[] args) {
int num = 0;//随机数
int count = 0;//获取到随机数的个数
int[] array = new int[10];//定义数组
int temp;//临时变量
//获取随机数
while (count<10) {
num = (int)((100-1+1)*Math.random()+1); //获得一个随机数
if (num%2==0) {//除以2的余数为0(偶数)才添加到数组
array[count] = num;
count++;
}
}
//排序处理
for (int i=0; i<10; i++){
for (int j=0; j<10; j++){
if (array[i]>array[j]){
temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}
}
//输出数组元素
for (int n=0; n<array.length; n++) {
System.out.print(array[n]+"\t");
}
}
}
/**
* Test类
* @author Andy
*/
public class Test {
public static void main(String[] args) {
int num = 0;//随机数
int count = 0;//获取到随机数的个数
int[] array = new int[10];//定义数组
int temp;//临时变量
//获取随机数
while (count<10) {
num = (int)((100-1+1)*Math.random()+1); //获得一个随机数
if (num%2==0) {//除以2的余数为0(偶数)才添加到数组
array[count] = num;
count++;
}
}
//排序处理
for (int i=0; i<10; i++){
for (int j=0; j<10; j++){
if (array[i]>array[j]){
temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}
}
//输出数组元素
for (int n=0; n<array.length; n++) {
System.out.print(array[n]+"\t");
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import java.util.Arrays;public class Test {
public static void main(String[] args) {
int num = 0;//随机数
int count = 0;//获取到随机数的个数
int[] array = new int[10];//定义数组
//获取随机数
while (count<10) {
num = (int)(Math.random()*100); //获得一个随机数
if (num%2==0) {//除以2的余数为0(偶数)才添加到数组
array[count] = num;
count++;
}
}
//排序
Arrays.sort(array);
//输出数组元素
for(int x: array)
System.out.print(" "+x);
}
}
public static void main(String[] args) {
int num = 0;//随机数
int count = 0;//获取到随机数的个数
int[] array = new int[10];//定义数组
//获取随机数
while (count<10) {
num = (int)(Math.random()*100); //获得一个随机数
if (num%2==0) {//除以2的余数为0(偶数)才添加到数组
array[count] = num;
count++;
}
}
//排序
Arrays.sort(array);
//输出数组元素
for(int x: array)
System.out.print(" "+x);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询