using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace prakt_1_klassi { internal class zadanie4 { private double ves; private double rost; public double setVes { set { ves = value; } } public double setRost { set { rost = value; } } public string raschet { get { if (ves / ((rost /100)*(rost /100)) < 18.5) return "Дефицит массы тела"; else if ((ves / (Math.Pow((rost / 100), 2)) >= 18.5) && (ves / (Math.Pow((rost / 100), 2)) <= 25)) return "Норма"; else return "Избыточная масса тела"; } } } }