예제 #1
0
파일: Q2.cs 프로젝트: Tilps/Stash
 static void Main(string[] args)
 {
     SumAndProductPuzzle c = new SumAndProductPuzzle();
     object o = c.getSum();
     PrintObj(o);
     System.Console.In.ReadLine();
 }
 private static Boolean KawigiEdit_RunTest(int testNum, int p0, int p1, Boolean hasAnswer, long p2)
 {
     Console.Write("Test " + testNum + ": [" + p0 + "," + p1);
     Console.WriteLine("]");
     SumAndProductPuzzle obj;
     long answer;
     obj = new SumAndProductPuzzle();
     DateTime startTime = DateTime.Now;
     answer = obj.getSum(p0, p1);
     DateTime endTime = DateTime.Now;
     Boolean res;
     res = true;
     Console.WriteLine("Time: " + (endTime - startTime).TotalSeconds + " seconds");
     if (hasAnswer)
     {
         Console.WriteLine("Desired answer:");
         Console.WriteLine("\t" + p2);
     }
     Console.WriteLine("Your answer:");
     Console.WriteLine("\t" + answer);
     if (hasAnswer)
     {
         res = answer == p2;
     }
     if (!res)
     {
         Console.WriteLine("DOESN'T MATCH!!!!");
     } else if ((endTime - startTime).TotalSeconds >= 2)
     {
         Console.WriteLine("FAIL the timeout");
         res = false;
     } else if (hasAnswer)
     {
         Console.WriteLine("Match :-)");
     } else
     {
         Console.WriteLine("OK, but is it right?");
     }
     Console.WriteLine("");
     return res;
 }