我正在创建一个快速民意调查程序。
已指示我在不使用任何LINQ运算符的情况下使其运行。
这是我的两个字典:
Dictionary<int, string> ballots = new Dictionary<int, string>();
Dictionary<int, int> votes = new Dictionary<int, int>();
这是我的投票方式:
//Print the ballots as list
Console.WriteLine("Voting Ballots:");
foreach (KeyValuePair<int, string> ballot in ballots)
{
Console.WriteLine("{0} - {1}", ballot.Key, ballot.Value);
}
//Voting process
Console.WriteLine("\nVote for one of the ballots");
Console.WriteLine("---------------------------------");
Console.WriteLine("Write the number of the ballot you want to vote for: ");
int nVote; int.TryParse(Console.ReadLine(), out nVote);
int val;
string nBallot;
//Verify if the ballot exists
if (planillas.TryGetValue(nVote, out nBallot)){
Console.WriteLine("You've voted for the ballot {0}", nBallot);
if (votes.TryGetValue(nVote, out val)) {
votes[nVote] += 1;
}
}else{
Console.WriteLine("The ballot #{0} doesn't exist. \nPlease try again.", nVote);
}
我需要输出如下结果:
投票ID ---------投票名称------------投票数
1 ------ BALLOT NAME --------- 5 2 ------ BALLOT NAME --------- 15 3 ------ BALLOT NAME --------- 25
投票ID是给定的数字,名字也是如此。
我将打印结果如下:
Console.Clear();
Console.WriteLine("VOTING RESULTS: ");
Console.WriteLine("--------------------------------------------------------------");
Console.WriteLine("BALLOT ID --------- BALLOT NAME ------------ NUMBER OF VOTES");
List<int> nVotes = votes .Keys.ToList<int>();
foreach (KeyValuePair<int, int> ballot in votes )
{
Console.Write("{0} ----- ", ballot.Key);
// I need to print the ballot's name here
Console.Write("----- {0}", ballot.Value);
}
我尝试这样做:
foreach (KeyValuePair<int, int> planilla in votosPlanillas)
{
Console.Write("\n ---------- {0} ---------- ", planilla.Key);
if (planillas.TryGetValue(planilla.Key, out nPlanilla)){
Console.Write("{0} ", nPlanilla);
}
foreach (KeyValuePair<int, string> namePlanilla in planillas) {
Console.Write(" ---------- {0}", planilla.Value);
}
}
但是结果是:
----- BALLOT ID ----- BALLOT NAME ----- NUMBER OF VOTES
---------- 1 ---------- a ---------- 1 ---------- 1 ---------- 1 ---------- 1
---------- 2 ---------- b ---------- 1 ---------- 1 ---------- 1 ---------- 1
---------- 3 ---------- c ---------- 3 ---------- 3 ---------- 3 ---------- 3
---------- 4 ---------- d ---------- 1 ---------- 1 ---------- 1 ---------- 1
在那个结果中,我对第三票进行了三次投票。它正在运行,但是...正在打印破折号(----------),并且投票数与1号选票相对应。
我如何得到想要的结果?
答案 0 :(得分:4)
在开始之前,我建议您将代码更新为具有Dictionary<int, Ballot>
的{{1}},其中Ballot
是具有名称和计数的class
,因此您无需管理两个字典。不管...
您当前的问题是另一个foreach
循环内的foreach
循环。如果保证两个字典中的键相同,则可以删除第二个循环:
foreach (KeyValuePair<int, int> planilla in votosPlanillas)
{
Console.Write("\n ---------- {0} ---------- ", planilla.Key);
if (planillas.TryGetValue(planilla.Key, out nPlanilla)){
Console.Write("{0} ", nPlanilla);
}
Console.Write(" ---------- {0}", planilla.Value);
}
请记住,如果您没有使字典正确同步,则if
语句将失败,并且您将获得一个包含ID和投票数但没有投票名称的报告条目。