Implement a Fortran 90 program which has the following features:

 

  1. The program creates a real run-time array whose lower and upper bounds will be read from the screen.
  2. After the program reads the lower and upper bounds, it will ask you to enter the elements of the array.
  3. After you enter the elements of the array, the program will ask you to enter a real number to search for.
  4. 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.