public static double CalculateTrapezoidArea(double topBase, double bottomBase, double height){ // Площадь трапеции: (a + b) / 2 * h return 0.5 * (topBase + bottomBase) * height;}