Implement a Fortran 90 program
which has the following features:
- The
program creates a real run-time array whose lower and upper bounds will be
read from the screen.
- After
the program reads the lower and upper bounds, it will ask you to enter the
elements of the array.
- After
you enter the elements of the array, the program will ask you to enter a
real number to search for.
- After
you enter that number, the program will search the array for that number.
If the number is an element of the array, then the program displays YES.
If it is not an element of the array, the program displays NO.
END of the activity.
NOTE: It is may be a good exercise to modify the program so
that it will count how many times the entered number shows up in the array.