这是排列的东西还是其他?

时间:2019-05-28 07:25:11

标签: c#

一个人进行1轮练习1轮 2套他/她进行了2轮 3套他/她进行3轮 然后再回到2套2轮 一轮1套

我查找了排列,但没有考虑到需要

using System;

namespace First_Application
{
    class Program
    {
        static void Main(string[] args)
        {
            //reading input data
            string inputData = Console.ReadLine();
            int numberOfRounds = Convert.ToInt32(inputData);

            //formula for n rounds


            //display the result
            Console.WriteLine(numberOfRounds); 
        }
    }
}

总回合数为9。我需要对此进行编码,以使其适用于任何数量。

0 个答案:

没有答案