簡體   English   中英

尋找一種方法來縮短我的代碼

[英]Looking for a way to shorten my code

這是我的代碼:

    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();

    }

有人可以幫我解決我的代碼嗎? 我不知道我在做什么

謝謝

使一個數組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)}");
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM