Write a Fortran program that create 2 real matrices A and B. The dimension of A and B is 4. The program: 1- Reads elements of array A 2- Сору array A to array B. 3- Reverse the elements of array A 4- Find the maximum element of A 5- The output should be as in the test run Sample test run: Enter matrix A elements 5 -10 100 0 Matrix B 100.000000 5.00000000 -10.0000000 0.00000000 Matrix A in the reverse order 0.00000000 100.000000 -10.0000000 5.00000000 the maximum entered element 100 . Program finished with exit code 0 Show transcribed image text Write a Fortran program that create 2 real matrices A and B. The dimension of A and B is 4. The program: 1- Reads elements of array A 2- Сору array A to array B. 3- Reverse the elements of array A 4- Find the maximum element of A 5- The output should be as in the test run Sample test run: Enter matrix A elements 5 -10 100 0 Matrix B 100.000000 5.00000000 -10.0000000 0.00000000 Matrix A in the reverse order 0.00000000 100.000000 -10.0000000 5.00000000 the maximum entered element 100 . Program finished with exit code 0
Expert Answer
Answer to Write a Fortran program that create 2 real matrices A and B. The dimension of A and B is 4. The program: 1- Reads elemen…