using System;
public class Program
{
public static void Main()
string[] name= new string[5];
name[0]="徐熙娣";
name[1]="林志玲";
name[2]="郭采潔";
name[3]="蕭敬騰";
name[4]="柯震東";
int[] count=new int[5];
count[0]=50;
count[1]=53;
count[2]=48;
count[3]=38;
count[4]=11;
int i,choice;
do
//此處貼程式
for(i=0;i<5;i++)
Console.Write("編號"+i+":");
Console.WriteLine(name[i]+count[i]+"票");
}
Console.Write("請投票");
choice=Convert.ToInt16(Console.ReadLine());
Console.WriteLine("你選擇"+choice);
if(choice==0)
{count[0]++;}
if(choice==1)
{count[1]++;}
if(choice==2)
{count[2]++;}
if(choice==3)
{count[3]++;}
if(choice==4)
{count[4]++;}
if((count[0]>60)||(count[1]>60)||(
}while(choice!=9);