public static PHANSO TinhTong(PHANSO a, PHANSO b) { PHANSO kq; kq.TuSo = a.TuSo * b.MauSo + a.MauSo * b.TuSo; kq.MauSo = a.MauSo * b.MauSo; return(kq); }
public static string XuatPhanSo(PHANSO a) { return($"{a.TuSo}/{a.MauSo}"); }