// Hình Chữ Nhật using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WindowsFormsApp3 { class HCN { public int cd; public int cr; public HCN(int cd,int cr) { this.cd = cd; this.cr = cr; } public int tinhDT() { return cd * cr; } public int tinhCV() { return (cd + cr) * 2; } public String xuatTT() { return "dt: " + tinhDT() + " cv: " + tinhCV(); } } } // Hình Hộp using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WindowsFormsApp3 { class HH : HCN { public int cc; public HH(int cd,int cr,int cc):base(cd,cr) { this.cc = cc; } public int tinhTT() { re...
Trung Tâm Nhất Nghệ - 00299A - KG: 10/04/2021