예제 #1
0
파일: Program.cs 프로젝트: haditj66/LHTest
        static void Main(string[] args)
        {
            while (true)
            {

                EquationMaker em = new EquationMaker();
                Equation eq = em.CreateEquation();

                Console.WriteLine(eq.FullEquation + " " + eq.Answer);
                Console.ReadLine();
            }
        }
예제 #2
0
 public void StartTheTest(object sender, StartedTestEventArgs e)
 {
     EM = new EquationMaker();
     TheTestStats = new TestStats(e.Name, e.Difficulty, EM.CreateEquation(), 5);
     AA = new AnswerAnalyzer(TheTestStats);
 }