Home /
Expert Answers /
Computer Science /
question-1-write-a-program-that-to-enter-student-name-grade-and-print-it-to-the-screen-with-belo-pa180
(Solved):
Question 1: Write a Program that to enter Student Name, Grade and print it to the screen with belo ...
Question 1: Write a Program that to enter Student Name, Grade and print it to the screen with below requirements - Asks the users how many student grades they want to enter. - Based on that number the program should setup a loop to ask the user to enter student name and the student grade. - Save this information using 2 arrays - At the end the program must show the student names and grades with 1 student on each line on the screen Program should use Arrays and loops to achieve the task. Question 2: Write a Program to calculate max and min of rain fall over 12 months, with below requirement - Asks the user to enter amount of rain for each month of year - For each input make sure the value must be between 0 and 100 - If the user enters invalid value ask the user to enter again - Use a List to save this information - Use the List methods to show the minimum and maximum rain amount. Program should use List and loops to achieve the task.