2024-10-13 20:28:47 +08:00

17 lines
350 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package chapter3.demo34;
/**
* Main类程序的入口点
*/
public class Main {
/**
* 主方法
* @param args 命令行参数
*/
public static void main(String[] args) {
// 创建VotingSystem对象并开始投票
VotingSystem votingSystem = new VotingSystem();
votingSystem.startVoting();
}
}