溫馨提示×

java投票統(tǒng)計程序怎么實現(xiàn)

小億
150
2023-11-15 22:45:50
欄目: 編程語言

要實現(xiàn)一個Java投票統(tǒng)計程序,可以按照以下步驟進行:

  1. 定義一個投票類,包含候選人的姓名和得票數(shù)。
public class Candidate {
    private String name;
    private int votes;

    public Candidate(String name) {
        this.name = name;
        this.votes = 0;
    }

    public String getName() {
        return name;
    }

    public int getVotes() {
        return votes;
    }

    public void addVote() {
        votes++;
    }
}
  1. 創(chuàng)建一個候選人列表,并初始化候選人對象。
List<Candidate> candidates = new ArrayList<>();
candidates.add(new Candidate("候選人1"));
candidates.add(new Candidate("候選人2"));
candidates.add(new Candidate("候選人3"));
  1. 接收用戶的投票輸入,根據(jù)輸入的候選人姓名增加相應(yīng)候選人的得票數(shù)。
Scanner scanner = new Scanner(System.in);
String input = scanner.nextLine();
for (Candidate candidate : candidates) {
    if (candidate.getName().equals(input)) {
        candidate.addVote();
        break;
    }
}
  1. 統(tǒng)計所有候選人的得票數(shù),并輸出結(jié)果。
for (Candidate candidate : candidates) {
    System.out.println(candidate.getName() + "得票數(shù):" + candidate.getVotes());
}

完整的代碼如下:

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class VotingSystem {
    public static void main(String[] args) {
        List<Candidate> candidates = new ArrayList<>();
        candidates.add(new Candidate("候選人1"));
        candidates.add(new Candidate("候選人2"));
        candidates.add(new Candidate("候選人3"));

        Scanner scanner = new Scanner(System.in);
        String input = scanner.nextLine();
        for (Candidate candidate : candidates) {
            if (candidate.getName().equals(input)) {
                candidate.addVote();
                break;
            }
        }

        for (Candidate candidate : candidates) {
            System.out.println(candidate.getName() + "得票數(shù):" + candidate.getVotes());
        }
    }

    static class Candidate {
        private String name;
        private int votes;

        public Candidate(String name) {
            this.name = name;
            this.votes = 0;
        }

        public String getName() {
            return name;
        }

        public int getVotes() {
            return votes;
        }

        public void addVote() {
            votes++;
        }
    }
}

這樣,當(dāng)用戶輸入候選人的姓名時,程序會自動增加相應(yīng)候選人的得票數(shù),并在最后輸出所有候選人的得票數(shù)。

0