Files
BUT2/DEV/DEV3.1/TP01/Exercise1/Main.java

19 lines
574 B
Java
Raw Normal View History

2025-09-26 08:56:23 +02:00
public class Main {
public static void main(String[] args) {
Database database = new Database();
2025-10-02 10:47:14 +02:00
Votes votesForItaly = database.getVotesFromCompetitor("Pays-Bas");
2025-09-26 08:56:23 +02:00
2025-09-26 13:21:58 +02:00
System.out.println("Vote " + votesForItaly.getCompetitorName() + " :");
for(Vote vote : votesForItaly.getVoters()) {
System.out.println(vote.getVoterName() + " " + vote.getPoints());
2025-09-26 08:56:23 +02:00
}
2025-09-26 13:21:58 +02:00
System.out.println("-------------------");
System.out.println("Total " + votesForItaly.getTotalPoints());
2025-10-02 10:47:14 +02:00
database.close();
2025-09-26 08:56:23 +02:00
}
}