Project 5: Find Prime Numbers in a Range (Without Nested Loops) Write a program that prompts the user to enter a range of numbers (start and end values, inclusive). The program should then identify and output all prime numbers within that range. A prime number is a natural number greater than 1 that is not a product of two smaller natural numbers. In other words, a prime number is only divisible by 1 and itself. Hints: Use a single loop to iterate through each number in the given range. Use a helper function to check if a number is prime. Create a count variable to keep track of the total number of prime numbers found.

Project 5 Find Prime Numbers in a Range Without Nested Loops Write a program that prompts the user to enter a range of numbers start and end values inclusive Th class=