static void Main(string[] args) { Console.Write("输入整数幂的次数: n = "); int n = int.Parse(Console.ReadLine()); MyApp(n); Console.ReadLine(); }