Question: Write a Java program to generate 10 random numbers between 0 and 99, figure out the prime numbers in them, and count the number

Write a Java program to generate 10 random numbers between 0 and 99, figure out the prime numbers in them,

Write a Java program to generate 10 random numbers between 0 and 99, figure out the prime numbers in them, and count the number of prime numbers. The program should implement a method to test if a number is a prime as follows: public class Lab6_2 { } public static void main(String[] args) { ..... } public static boolean is Prime (int n) { } The following is a sample run of the program: Ten random numbers are: 71 31 63 53 63 36 6 2 20 32 The prime numbers in the list are: 71 31 53 2 The number of prime numbers: 4

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Heres a simple Java program that generates 10 random numbers between 0 and 99 identifies the prime n... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!