Answer to Question #283087 in Java | JSP | JSF for bin

Question #283087

Write a program that allows the user to enter the last names of five candidates in a local election and the votes received by each candidate. The program should then output each candidate’s name, the votes received by that candidate, and the percentage of the total votes received by the candidate. Your program should also output the winner of the election. A sample output is:




Candidate Votes Received % of Total Votes



Johnson 5000 25.91



Miller 4000 20.72



Duffy 6000 31.09



Robinson 2500 12.95



Ashtony 1800 9.33



Total 19300



The Winner of the Election is Duffy.

1
Expert's answer
2021-12-28T01:31:47-0500
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String[] names = new String[5];
        int[] votes = new int[names.length];
        int total = 0;
        int winner = 0;
        int max = Integer.MIN_VALUE;
        for (int i = 0; i < names.length; i++) {
            System.out.print("Enter the last name: ");
            names[i] = in.next();
            System.out.print("Enter the received votes: ");
            votes[i] = in.nextInt();
            total += votes[i];
            if (votes[i] > max) {
                max = votes[i];
                winner = i;
            }
        }
        System.out.printf("%-12s%-18s%-18s\n", "Candidate", "Votes Received", "% of Total Votes");
        for (int i = 0; i < names.length; i++) {
            System.out.printf("%-12s%-18d%-18.2f\n", names[i], votes[i], (double) votes[i] / total * 100);
        }
        System.out.println("\nTotal " + total);
        System.out.println("\nThe Winner of the Election is " + names[winner]);
    }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog