08. Refactor Volume of Pyramid
Здравейте,
В описателната част към задачата е вписано, че кода който следва да се преработи е работещ. Според мен не е.
1. Това не е формула за обем на пирамида. Тя е V = B.h/3 (B = лицето на основата)
2. Judge дава вход 3, 3, 3 и изход 9, което пак не е възможно дори да приемем посочената в кода формула.
Пропускам ли нещо или кода не е верен?
You are given a working code that finds the volume of a pyramid. However, you should consider that the variables exceed their optimum span and have improper naming. Also, search for variables that have multiple purpose.
Code
Sample Code |
double dul, sh, V = 0; Console.Write("Length: "); dul = double.Parse(Console.ReadLine()); Console.Write("Width: "); sh = double.Parse(Console.ReadLine()); Console.Write("Heigth: "); V = double.Parse(Console.ReadLine()); V = (dul + sh + V) / 3; Console.WriteLine("Pyramid Volume: {0:F2}", V); |
Благодаря