Exemple #1
0
    private static void Main()
    {
        int remainingTestCases = int.Parse(Console.ReadLine());

        while (remainingTestCases-- > 0)
        {
            Console.WriteLine(
                APS.Solve(int.Parse(Console.ReadLine())));
        }
    }
 // Token: 0x06000C66 RID: 3174 RVA: 0x0001D28F File Offset: 0x0001B48F
 public void addParam(string key, object obj)
 {
     if (Paramss == null)
     {
         Paramss = new Dictionary <string, object>();
     }
     if (APS.Equals(key.ToLower()))
     {
         throw new Exception("the key can't be aps");
     }
     Paramss.Add(key, obj);
 }