/*创建一个3行5列的二维数组,每个元素的取值范围是[30, 70],对第3行的数据 * 按从小到大排序。*/

import java.util.Random;
Random random = new Random();
  public static void main(String[] args) {    
  int [][] c = new int[3][5];         for (int i = 0; i < c.length; i++) {             for (int j = 0; j < c[i].length; j++) {                 c[i][j] = random.nextInt(41)+30;             System.out.print(c[i][j]+" ");         }    System.out.println();                 }                   for(int i = 0; i < c.length - 1; i++) {          for(int j = 0; j < c[i].length - 1

/*创建一个3行5列的二维数组,每个元素的取值范围是[30, 70],对第3行的数据 * 按从小到大排序。*/最先出现在Python成神之路

版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/7190.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>