足し算してみる その1

手始めに 1 + 1 を計算させてみます。無事に2.0が表示されました。

手始めに 1 + 1 を計算させてみます。無事に2.0が表示されました。

  • タグ:
  • タグはありません
public class Main {

	public static void main(String[] args) {
		Numeric a = new Numeric(1.0);
		Numeric b = new Numeric(1.0);
		Add add = new Add(a, b);

		Numeric result = (Numeric)add.evaluation();
		System.out.println(result.getValue()); 
	}

}