程 序 人 生

[每个人都是工程师,书写着属于自己的人生代码!--林海]
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2007年12月21日

摘要: protected void Page_Load(object sender, EventArgs e) { complex complex_a = new complex(1.0, 1.0); complex complex_b = new complex(2.0, 2.0); Response.Write("加法运算结果:" + complex_a.complex_add(complex_b)... 阅读全文

posted @ 2007-12-21 16:53 林海 阅读(340) 评论(0) 推荐(0) 编辑

摘要: publicclass Vector3{public float [] vector;private const float E = 0.0000001f;public Vector3(float x,float y, float z){vector = new float[3]{x,y,z};}public Vector3(Vector3 vct){vector = new float[3];v... 阅读全文

posted @ 2007-12-21 16:52 林海 阅读(515) 评论(0) 推荐(0) 编辑