文件名称:choose
-
所属分类:
- 标签属性:
- 上传时间:2012-11-16
-
文件大小:834.25kb
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
用c++编写的选票系统,并可统计相关得票情况-#include <iostream>
using namespace std
struct Person//声明结构体类型Person;
{
char name[20]
int count
}
int main()
{
Person leader[3]={"aaa",0,"bbb",0,"ccc",0}
//定义Person类型的数组,内容为当前候选人的姓名及得票数;
char leader_name[20] //leader_name为投票人所选的人姓名;
int i,j
for(i=0 i<10 i++)
{
cin>>leader_name //先后输入十张票上所选的人的姓名;
for(j=0 j<3 j++)
{
if(strcmp(leader_name,leader[j].name)==0)
leader[j].count++ //所选人与候选人的姓名相同,则该候选人的票数加1;
}
}
cout<<endl
double round
for(i=0 i<3 i++)
{
round=leader[i].count/10
cout<<leader[i].name<<":"<<"得票数:"<<leader[i].count<<"得票率:"<<round<<endl
}
return 0
}
using namespace std
struct Person//声明结构体类型Person;
{
char name[20]
int count
}
int main()
{
Person leader[3]={"aaa",0,"bbb",0,"ccc",0}
//定义Person类型的数组,内容为当前候选人的姓名及得票数;
char leader_name[20] //leader_name为投票人所选的人姓名;
int i,j
for(i=0 i<10 i++)
{
cin>>leader_name //先后输入十张票上所选的人的姓名;
for(j=0 j<3 j++)
{
if(strcmp(leader_name,leader[j].name)==0)
leader[j].count++ //所选人与候选人的姓名相同,则该候选人的票数加1;
}
}
cout<<endl
double round
for(i=0 i<3 i++)
{
round=leader[i].count/10
cout<<leader[i].name<<":"<<"得票数:"<<leader[i].count<<"得票率:"<<round<<endl
}
return 0
}
(系统自动生成,下载前可以参看下载内容)
下载文件列表
Debug/BuildLog.htm
Debug/choose.exe.embed.manifest
Debug/choose.exe.embed.manifest.res
Debug/choose.exe.intermediate.manifest
Debug/choose.pch
Debug/choose.pdb
Debug/leader.obj
Debug/mt.dep
Debug/vc60.idb
Debug/vc60.pdb
Debug/vc90.idb
Debug/vc90.pdb
choose.dsp
choose.dsw
choose.ncb
choose.sln
choose.vcproj
choose.vcproj.WIN-74UE0280MC2.Administrator.user
leader.cpp
Debug
Debug/choose.exe.embed.manifest
Debug/choose.exe.embed.manifest.res
Debug/choose.exe.intermediate.manifest
Debug/choose.pch
Debug/choose.pdb
Debug/leader.obj
Debug/mt.dep
Debug/vc60.idb
Debug/vc60.pdb
Debug/vc90.idb
Debug/vc90.pdb
choose.dsp
choose.dsw
choose.ncb
choose.sln
choose.vcproj
choose.vcproj.WIN-74UE0280MC2.Administrator.user
leader.cpp
Debug
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.