Изпит по Основи на програмирането 03 Септември Задача 1. Шивашки цех
Здравейте , не мога и не мога да реша тази задача моля за малко помощ
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _5.damn
{
    class Program
    {
        static void Main(string[] args)
        {
            var tables = double.Parse(Console.ReadLine());
            var weightTables = double.Parse(Console.ReadLine());
            var widhtTables = double.Parse(Console.ReadLine());
          
           
            var all = (weightTables + 2 * 0.30) * (widhtTables + 2 * 0.30);
            var centre = (weightTables / 2) * (weightTables / 2);
           
            var allofall1 = all *7 + centre *9 ;
            var allofall2 = allofall1 *7 + centre * 9 ;
            Console.WriteLine("{0:f2}",allofall1);
            Console.WriteLine("{0:f2}", allofall2);
        }
    }
}