示例#1
0
        public void calculateSum(int firstOp, int secondOp, int thirdOp)
        {
            var newForm = new SumForm();

            newForm.viewResult(firstOp * secondOp, firstOp * thirdOp,
                               reverseINum((firstOp + thirdOp) * secondOp));
        }
示例#2
0
 public void calculateSum(int firstOp, int secondOp, int thirdOp)
 {
     var newForm = new SumForm();
     newForm.viewResult(firstOp * secondOp, firstOp * thirdOp,
         reverseINum((firstOp + thirdOp) * secondOp));
 }