Choreography
Искам да попитам за една задача на име "Choreography" от теста на 17 September 2017, не намирам грашката в кода ми... Някой ако може да помогне.
 
using System;
namespace ConsoleApp52
{
    class Program
    {
        static void Main(string[] args)
        {
            var broiStupki = int.Parse(Console.ReadLine());
            var tanciori = int.Parse(Console.ReadLine());
            var dni = int.Parse(Console.ReadLine());
            var stupkiNaDen = (broiStupki / dni);
            var precentStupkiZatancior = (stupkiNaDen / tanciori);
            Console.WriteLine(precentStupkiZatancior);
            if (precentStupkiZatancior <= 1300 / 100)
            {
                Console.WriteLine($"No, They will not succeed in that goal! Required {precentStupkiZatancior:f2}% steps to be learned per day.");
            }
            else
            {
                Console.WriteLine($"Yes, they will succeed in that goal! {precentStupkiZatancior:f2}%.");
            }
        }
    }
}