This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package src; | |
import java.util.ArrayList; | |
public class Ballot extends Election { | |
private int totalCount = 0; | |
private String voterName; | |
private int[] voteFor; | |
private int id = 0000; |