Page 1 of 1

Write a Python program that asks the user for five numbers. Determine and display the prime ones. A prime number is a nu

Posted: Tue Jul 05, 2022 10:19 am
by answerhappygod
Write a Python program that asks the user for five numbers.Determine and display the prime ones. A prime number is a numbergreater than 1 with only two factors – themselves and 1.A prime number cannot be divided by any other numbers withoutleaving a remainder. (Test case: input: 11, 15, 2, 5, 6. Primenumbers are 11, 2, 5.)