예제 #1
0
파일: Program.cs 프로젝트: LiJing96/ASP.NET
 public fraction GetDiv(fraction other)
 {
     return(new fraction(this.numerator * other.denominator, this.denominator * other.numerator));
 }