Birthday
Здравейте,
Ще помоля отново за помощ и коментари за тази задача.
https://judge.softuni.bg/Contests/Practice/Index/784#0
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Birthday
{
    class Program
    {
        static void Main(string[] args)
        {
            int length = int.Parse(Console.ReadLine());
            int width= int.Parse(Console.ReadLine());
            int height = int.Parse(Console.ReadLine());
            int n = int.Parse(Console.ReadLine());
var volume = Math.Round((width * length * height * 0.001), 3);
var percentage = n * 0.01;
            var litre =  volume * (1 - percentage);
         
            {
                Console.WriteLine("{0:f3}", litre);
            }
           
        }
    }
}
Благодаря.
Условието е в линка в началото на моя пост.
https://judge.softuni.bg/Contests/Practice/Index/784#0