19. *Тръби в басейн
using System;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int V = Int32.Parse(Console.ReadLine());
int P1 = Int32.Parse(Console.ReadLine());
int P2 = Int32.Parse(Console.ReadLine());
double H = Double.Parse(Console.ReadLine());
double poolFull = (P1 + P2) * H;
if (V < poolFull)
{
Console.WriteLine("For {0} hours the pool overflows with {1} liters.", H, poolFull - V);
}
else if (V >= poolFull)
{
double poolFullPercent = (poolFull / V) * 100;
double pipe1 = ((P1 * H) / poolFull) * 100;
double pipe2 = 100 - pipe1;
Console.WriteLine("The pool is {0:0}% full. Pipe 1: {1:0}%. Pipe 2: {2:0}%.", poolFullPercent, pipe1, pipe2);
}
}
}
}
Защо аджеба judge-a не ми приема решението за вярно? Откога 100% имат 99% или аз бъркам нещо?
Cheers!
Пак не гледам...