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, 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
Heres a simple Java program that generates 10 random numbers between 0 and 99 identifies the prime n... View full answer
Get step-by-step solutions from verified subject matter experts
