Advertisement
RupeshAcharya60

Practical Java Dilasah

Dec 5th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.48 KB | None | 0 0
  1. import java.util.ArrayList;
  2.  
  3. import java.util.*;
  4.  
  5. public class Main {
  6.  
  7.     public static void main(String[] args) {
  8.  
  9.             int max = 0, counter = 0, winner = 0;
  10.  
  11.             String name;
  12.  
  13.             List<String> candidate_Name = new ArrayList<>();
  14.             List<Integer> votes = new ArrayList<>();
  15.             Scanner input = new Scanner(System.in);
  16.  
  17.  
  18.             System.out.println("###################################################");
  19.             System.out.println("# Enter the votes, one vote per line.             #");
  20.             System.out.println("# End with either -1 or an empty line.            #");
  21.             System.out.println("###################################################");
  22.  
  23.  
  24.             while (true) {
  25.                 name = input.nextLine();
  26.  
  27.                 //break point of the program
  28.                 if (name.equals("-1") || name.equals("")) {
  29.                     break;
  30.                 }
  31.  
  32.                 //Check if there is exist a candidate name if not add
  33.                 if (!candidate_Name.contains(name)) {
  34.                     candidate_Name.add(name);
  35.                     votes.add(1);
  36.                     continue;
  37.                 }
  38.  
  39.  
  40.  
  41.                 //Handle the vote Count
  42.                 int index = candidate_Name.indexOf(name);
  43.                 votes.set(index, votes.get(index) + 1);
  44.  
  45.  
  46.             }
  47.  
  48.             //display all candidate names with votes
  49.             System.out.println("\n");
  50.             for (int i = 0; i < candidate_Name.size(); i++) {
  51.  
  52.                 if (votes.get(i) > max) {
  53.                     max = votes.get(i);
  54.                     winner = i;
  55.                 }
  56.                 System.out.println(candidate_Name.get(i) + " recieved " + votes.get(i) + " votes");
  57.  
  58.  
  59.             }
  60.  
  61.         System.out.println("----------------------------");
  62.         for (int i = 0; i < candidate_Name.size(); i++) {
  63.             if (max == votes.get((i))) {
  64.                 counter += 1;
  65.             }
  66.         }
  67.         if (counter == 1) {
  68.             System.out.println("The Winner is " + candidate_Name.get(winner) + " with " + votes.get(winner) + " votes");
  69.         } else {
  70.             System.out.println("Its draw");
  71.             System.out.println("Press Enter for re-election or any key to terminate the program.....");
  72.  
  73.             String command = input.nextLine();
  74.             if (command.equals("")){
  75.  
  76.             }
  77.             else{
  78.  
  79.             }
  80.  
  81.  
  82.         }
  83.  
  84.  
  85.  
  86.     }
  87.  
  88.  
  89.     }
  90.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement