使用簡單工廠模式寫的乙個計算器

2021-07-02 15:27:30 字數 1097 閱讀 6777

<1>子類擁有父類除私有之外的所有屬性欄位和方法

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.threading.tasks;

namespace 工廠方法實現計算器

public double number2

public calculator()

public calculator(double a, double b)

/// /// 計算

///

///

public abstract double jsuan();

}/// /// 加法類

///

public class jiafadll:calculator //子類擁有父類除私有之外的所有屬性欄位和方法

public jiafadll(double a, double b)

: base(a, b) //呼叫父類帶兩個引數的建構函式,來初始化number1 和number2 (注意:因為jianfadll類繼承了calculator,所以jianfadll類是有number1,和number2兩個屬性的)

/// /// 重寫父類的jsuan方法

///

///

public override double jsuan()

}/// /// 減法類

///

public class jianfadll : calculator

public jianfadll(double a, double b)

: base(a, b)

public override double jsuan()

}class program

double i= c.jsuan();

console.writeline(i);

console.readkey();}}

}



乙個簡單的計算器

乙個非常簡單的計算器 來自sololearn 只能進行單一計算 while true print 設定 print enter 增加 to 增加 two numbers print enter 減去 to 減去 two numbers print enter 相乘 to 相乘 two numbers...

用python寫的乙個簡單的計算器

用python完成的乙個簡單的計算器,能算簡單的 運算,暫不支援鍵盤輸入,以後會慢慢加些附加的功能,讓它變得強大些 from tkinter import def frame root,side w frame root w.pack side side,expand yes,fill both r...

製作乙個簡單的計算器

coding utf 8 time 2020 2 5 author wowilliam210 file calculator.py software pycharm import win32com.client class acalculator object def check num zsq f...