-
Notifications
You must be signed in to change notification settings - Fork 1
/
Задача массивы 8.java
54 lines (41 loc) · 1.45 KB
/
Задача массивы 8.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import java.util.Scanner;
import java.util.Random;
import java.util.Arrays;
/*
Дан двумерный массив.
1. Вывести на экран элемент, расположенный в правом верхнем углу массива
2. Вывести на экран элемент, расположенный в левом нижнем углу массива
*/
public class Main{
public static double[][] randMatrix(int n)
{
Random r = new Random();
double[][] array;
array=new double[n][n];
for(int i =0; i<n; i++){
for(int j=0; j<n;j++){
array[i][j]=r.nextInt(99);
}
}
return array;
}
public static void printMatrix(double[][] array)
{
for(int i =0; i<array.length; i++)
{
for(int j =0; j<array.length; j++)
{
System.out.print(array[i][j]+"\t");
}
System.out.println();
}
}
public static void main(String []args){
Scanner sc = new Scanner(System.in);
double[][] matrix = new double[6][6];
matrix=randMatrix(6);
printMatrix(matrix);
System.out.println("Правый верхний: "+matrix[0][5]);
System.out.println("Левый нижний: "+matrix[5][0]);
}
}