Merge branch 'fix-typo' into 'master'

修正手误

See merge request !2
parents cb67e02d 3e64fa3c
......@@ -26,7 +26,7 @@ namespace Lottery
IReadOnlyList<Lottery> lotteries = Lottery.GetLotteries();
if (persons.Count == 0)
{
Console.WriteLine(Environment.NewLine + "未找到抽奖人员,请在程序生成目录下编写p.txt文件,每个人名占一行");
Console.WriteLine(Environment.NewLine + "未找到抽奖人员,请在程序生成目录下编写p.csv文件,每个人名占一行");
Console.ReadLine();
return;
}
......@@ -47,7 +47,7 @@ namespace Lottery
{
//计分方式1:根据返回的随机数加金币
//计分方式2:看命
//计分方式3:随加上一个人的金币,看能否逆袭
//计分方式3:随加上一个人的金币,看能否逆袭
//其他方式:可在下方对NewGrade属性进行操作
persons[j].NewGrade += (randoms[j] +
(Math.Abs(persons[j].GetHashCode() << 1) % persons.Count) +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment