Question: Write a Java program that does the following: 1. Asks the user to enter three numbers. This occurs in the main program. 2. Calls a
Write a Java program that does the following:
1. Asks the user to enter three numbers. This occurs in the main program.
2. Calls a method that sums the three numbers. The method should display the sum.
3. Calls a method to determine if the sum is prime. Using the formula
For (int divisor =2; divisor<=number/2; divisor++){
If (number%divisor==0){
Set isPrime to false
Exit the loop;
}
}
In this method display whether the sum is prime or not.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
