コード例 #1
0
        public void p74p75()
        {
            // Storage Register Overflow
            UIMap.Seven();
            UIMap.Period();
            UIMap.Three();
            UIMap.Three();
            UIMap.AssertNumeric(" 7.33          ");
            UIMap.EEX();
            UIMap.Five();
            UIMap.Two();
            UIMap.AssertNumeric(" 7.33        52");
            UIMap.STO();
            UIMap.One();
            UIMap.AssertNumeric(" 7.330000000 52");
            UIMap.EEX();
            UIMap.Five();
            UIMap.Zero();
            UIMap.AssertNumeric(" 1.          50");
            UIMap.STO();
            UIMap.Multiplication();
            UIMap.One();
            UIMap.AssertText(" Error         ");
            UIMap.AssertPrinter("        7.33+52 STO1",
                                "          1.+50 ST×1",
                                "               ERROR");

            UIMap.CLx();
            UIMap.AssertNumeric(" 1.000000000 50");
            UIMap.RCL();
            UIMap.One();
            UIMap.AssertNumeric(" 7.330000000 52");
            UIMap.AssertPrinter("                RCL1");
        }
コード例 #2
0
 public void p45()
 {
     // Error Display
     UIMap.Four();
     UIMap.CHS();
     UIMap.AssertNumeric("-4.            ");
     UIMap.Sqrt();
     UIMap.AssertText(" Error         ");
     UIMap.AssertPrinter("          -4.00   √X",
                         "               ERROR");
     UIMap.CLx();
     UIMap.AssertNumeric("-4.00          ");
 }