08. Choreography
Здравейте,
не намирам грешката в кода си....Някой може ли да ми помогне?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace choreography
{
class Program
{
static void Main(string[] args)
{
int steps = int.Parse(Console.ReadLine());
int dancers = int.Parse(Console.ReadLine());
int days = int.Parse(Console.ReadLine());
double stepsPerDay = (steps/days)/steps;
stepsPerDay = Math.Ceiling(stepsPerDay);
double stepsByDancer = stepsPerDay / dancers;
if (stepsPerDay <= 13)
{
Console.WriteLine($"Yes, they will succeed in that goal! {stepsByDancer:F2}%.");
}
else
{
Console.WriteLine($"No, They will not succeed in that goal! Required {stepsByDancer:F2}% steps to be learned per day.");
}
}
}
}
Благодаря, така се получи. :)