Зов за помощ от някое "гуру"
Здравейте, имам проблем със първата задача от тук https://csharp-book.softuni.bg/chapter-02-simple-calculations-exam-problems.html#simple-calculations ( учебна зала). Това с писането на кода които да решава дадените примери го постигнах обачее Judge системата ме наплю и ми даде 25/100 точки, въпросът е че не показва на кои тестове се е провалило и защо? https://judge.softuni.bg/Contests/Practice/Index/505#0 Ето го и кода :)
using System;
namespace Square_Area
{
class Program
{
static void Main(string[] args)
{
double lenght = double.Parse(Console.ReadLine());
double width = double.Parse(Console.ReadLine());
double wpwidth = 70;
double wplenght = 120;
double lcm = lenght * 100;
double wcm = width * 100;
int walkway = 100;
int door = 1;
int carpet = 2;
int RealWPW = Convert.ToInt32(lcm / wplenght);
int REALWPL = Convert.ToInt32((wcm - walkway) / wpwidth );
Console.WriteLine(REALWPL * RealWPW - (door + carpet));
}
}
}