Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program in FORTRAN90 that will read from the keyboard the data (Name, Date of birth, Registration number, Department, Grade) of 3 students
Write a program in FORTRAN90 that will read from the keyboard the data (Name, Date of birth, Registration number, Department, Grade) of 3 students of the University. Subsequently the program will display an option menu with the following options: Student search. The user will be able to enter the registration number and the rest of the student's details will be displayed on the screen. Calculation of average Calculation of the maximum and minimum grade and the name of the corresponding student Printing of a grade sheet (with all the student's details) Exit The user will be able to select any option he wants, as many times as he wants until he selects exit. Use appropriate formatting to print the data so that the numbers are printed to 2 decimal places and the text displayed on the screen is continuous (with appropriate spaces).
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Heres a simple example of a Fortran 90 program that fulfills the requirements youve specified fortran program StudentManagement implicit none character50 name3 character10 dob3 integer regNumber3 depa...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started