摘要:
class MainClass{ struct Vector { public double x, y, z; public Vector(double x, double y, double z) { this.x = x; this.y = y; this.z = z; } public Vector(Vector rhs) { x = rhs.x; y = rhs.y; z = rhs.z; } public override string ToString() { return "(" + x + "," + y + "," 阅读全文
posted @ 2011-04-01 17:22
aparche
阅读(470)
评论(0)
推荐(0)
浙公网安备 33010602011771号