为了账号安全,请及时绑定邮箱和手机立即绑定

寻找一种方法来缩短我的代码

寻找一种方法来缩短我的代码

C#
函数式编程 2021-06-03 11:32:50
这是我的代码:    static void Main(string[] args)    {        Console.Write("How many tests would you like to do? 1 to 10: ");        int tests = Convert.ToInt32(Console.ReadLine());        Console.WriteLine();    }有人可以帮我解决我的代码吗?我不知道我在做什么
查看完整描述

1 回答

?
SMILET

TA贡献1796条经验 获得超4个赞

制作一个数组int[] counts = new int[13]并使用counts[total]++;; 最后,循环它:


for(int i = 2 ; i <= 12 ; i++)

    // etc

(注意:您可以使用 11 个项目的数组并不断处理两个,但是......这可能不值得)


就像是:


static void Main()

{


    Console.WriteLine("Investigation 1");

    Console.WriteLine("===============");

    Console.WriteLine();

    Console.Write("How many sets of tests? 1 to 10: ");


    int sets = Convert.ToInt32(Console.ReadLine());

    Console.WriteLine();


    Random r = new Random();

    int[] counts = new int[13];


    for (int ctr = 0; ctr < 36 * sets; ctr++)

    {

        int a = r.Next(1, 7), b = r.Next(1, 7), total = a + b;

        Console.WriteLine($"Roll {(ctr + 1)}: {a} + {b} = {total}");

        counts[total]++;

    }


    Console.WriteLine("=======================");

    Console.WriteLine();

    Console.WriteLine("Total  Expected  Actual");

    Console.WriteLine("=====  ========  ======");


    for(int i = 2; i <= 12; i++)

    {

        var expected = sets * (6 - Math.Abs(7 - i));

        Console.WriteLine($"  {i}        {expected}        {counts[i]}");

    }

}

对于直方图:


var maxCount = counts.Max(); // needs "using System.Linq;" at the top

for (int i = 2; i <= 12; i++)

{

    var width = ((Console.WindowWidth - 10) * counts[i]) / maxCount; // make it proportional

    Console.WriteLine($"{i}\t{new string('*', width)}");

}


查看完整回答
反对 回复 2021-06-05
  • 1 回答
  • 0 关注
  • 123 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信