Example #1
0
        static void Main(string[] args)
        {
            Console.Write("需要的个数:");
            int n = Convert.ToInt32(Console.ReadLine());
            Cal c = new Cal();

            c.Calculator(n);
        }
Example #2
0
        static void Main(string[] args)
        {
            Console.Write("Please input the amout of questions:");
            int n = Convert.ToInt32(Console.ReadLine());
            Cal c = new Cal();

            c.Calculator(n);
        }