More Exercises .05 TrainingLab
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TrainingLab
{
class Program
{
static void Main(string[] args)
{
double roomWidth = double.Parse(Console.ReadLine());
roomWidth = roomWidth * 100;
double roomHeight = double.Parse(Console.ReadLine());
roomHeight = roomHeight * 100;
double roomArea = roomWidth * roomHeight;
double areaPerSeat = 70 * 40 + 70*80;
double hallwayArea = roomWidth * 100;
double freeRoomArea = roomArea - hallwayArea - 3*areaPerSeat;
double seatsCount = (freeRoomArea / areaPerSeat);
Console.WriteLine($"{seatsCount:f0}");
}
}
}
Намирам лицето на всичко и от общото лице деля на лицето на едно място, но не се получава правилен изход. Помощ!!!