Please send me answer within 10 min!! I will rate you good for sure!! Please send me typed answer!

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section: Chapter Questions
Problem 1PP: (Statistics) a. Write a C++ program that reads a list of double-precision grades from the keyboard...
icon
Related questions
Question
Please send me answer within 10 min!! I will rate you good for sure!! Please send me typed answer!!
1) Write a program to read in the elements of a two-dimensional (NXN) integer array,
and store the primary diagonal elements (left top to right bottom) of it in a one
dimensional (N) integer array. The program must ask the value of N, which can be
maximum 100. At the end of the program, the one-dimensional matrix must be
printed.
2) What is the output of the following program?
program quest 2
implicit none
integer i, j, k
do 10 i = 1,2
do 20 j = 1,10,5
do 30 k = 15, 0, -3
print", i, j, k
30
20
10 continue
end
continue
continue
Transcribed Image Text:1) Write a program to read in the elements of a two-dimensional (NXN) integer array, and store the primary diagonal elements (left top to right bottom) of it in a one dimensional (N) integer array. The program must ask the value of N, which can be maximum 100. At the end of the program, the one-dimensional matrix must be printed. 2) What is the output of the following program? program quest 2 implicit none integer i, j, k do 10 i = 1,2 do 20 j = 1,10,5 do 30 k = 15, 0, -3 print", i, j, k 30 20 10 continue end continue continue
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Business Models
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr