---------------------------------------------ChengFa类---------------------------------------------

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace JiSji
 8 {
 9     public class ChengFa : Operation
10     {
11         /// <summary>
12         /// 乘法类
13         /// </summary>
14         /// <returns></returns>
15         public override double GetResult()
16         {
17             double result = NumberA * NumberB;
18             return result;
19         }
20     }
21 
22 
23 }
View Code

相关文章:

  • 2022-12-23
  • 2021-11-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-16
  • 2022-12-23
  • 2022-12-23
  • 2021-05-14
  • 2021-10-07
  • 2021-08-21
相关资源
相似解决方案