示例#1
0
 public Rational(ExInt m, ExInt n)
 {
     M = m;
     N = n;
 }
示例#2
0
 public Rational(int m, int n)
 {
     M = m;
     N = n;
 }