示例#1
0
 public static Rational operator /(Rational r0, Rational r1)
 {
     return(new Rational(Powers.Div(r0.pows, r1.pows)));
 }