'Write a program that reads test scores, print the test scores and the lowest test score_ The number of tests is provided by the user: The test scores must be stored in an array: The program should have a method int lowest (int [ ] that takes an array as an argument and return the lowest score_ Sample run:
How many test do you have? Enter test score 1 : 50 Enter test score 2 : 45 Enter test score 3 : 100 Here are the scores you entered: 50 45 100 This is your lowest score: 45
Sample run: How many test do you have? 5 Enter test score 1 : 95 Enter test score 2 : 8 9 Enter test score 3 : 91 Enter test score 4 : 100 Enter test score 5 : 97 Here are the scores you entered: 95 8 9 91 100 97 This is your lowest score: 8 9'