资源简介

java实现简单投票程序 jdk 源程序 解压后用myeclipse 打开。

资源截图

代码片段和文件信息

package com.bo;

import java.util.ArrayList;
import java.util.*;

import com.pojo.Hxr;

public class Worker {

ArrayList array=new ArrayList();
Scanner scan=new Scanner(System.in);

public void inputHxr()
{
System.out.println(“请输入候选人姓名:“);
int i=1;
while(true)
{
String name=scan.nextLine();
if(name.equalsIgnoreCase(“over“))
{
break;
}
Hxr h=new Hxr(i++name);
array.add(h);
}

}

public void tp()
{

Scanner scan=new Scanner(System.in);
while(true)
{
System.out.println(“请输入候选人编号(输入零结束):“);
int id=scan.nextInt();
if(id==0) break;
Iterator it=array.iterator();
while(it.hasNext())
{
Hxr h=(Hxr)it.next();
int ps;
if(id==h.getNum())
{
ps=h.getPs();
h.setPs(++ps);
break;
}
}

}

}

public void sort()
{
Collections.sort(array);


}

public void show()
{
System.out.println(“显示候选人信息“);
System.out.println(“编号\t姓名\t票数“);
for(int i=0;i {
Hxr h=(Hxr)array.get(i);
System.out.println(h.getNum()+“\t“+h.getName()+“\t“+h.getPs());
}
}
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        232  2009-03-04 10:56  TP\.classpath

     文件        378  2009-03-04 10:56  TP\.project

     文件       2403  2009-07-28 20:29  TP\bin\com\bo\Worker.class

     文件        552  2009-07-28 20:29  TP\bin\com\main\Teacher.class

     文件       1166  2009-07-28 20:30  TP\bin\com\pojo\Hxr.class

     文件       1204  2009-07-28 20:29  TP\src\com\bo\Worker.java

     文件        266  2009-07-28 20:29  TP\src\com\main\Teacher.java

     文件        695  2009-07-28 20:30  TP\src\com\pojo\Hxr.java

     目录          0  2010-01-23 21:55  TP\bin\com\bo

     目录          0  2010-01-23 21:55  TP\bin\com\main

     目录          0  2010-01-23 21:55  TP\bin\com\pojo

     目录          0  2010-01-23 21:55  TP\src\com\bo

     目录          0  2010-01-23 21:55  TP\src\com\main

     目录          0  2010-01-23 21:55  TP\src\com\pojo

     目录          0  2010-01-23 21:55  TP\bin\com

     目录          0  2010-01-23 21:55  TP\src\com

     目录          0  2010-01-23 21:55  TP\bin

     目录          0  2010-01-23 21:55  TP\src

     目录          0  2010-01-23 21:55  TP

----------- ---------  ---------- -----  ----

                 6896                    19


评论

共有 条评论