Categories
Visual C#

Задача: Garden

Решение

using System;
namespace TelerikExamples
{
class Garden
{
static void Main()
{
decimal[] seedsCosts = {0.5M, 0.4M, 0.25M, 0.6M, 0.3M, 0.4M};
decimal totalCosts = 0M;
int totalArea = 250;
int inputArea = 0;
for (int i = 0; i < seedsCosts.Length; i++)
{
int seedsAmount = int.Parse(Console.ReadLine());
totalCosts += seedsAmount * seedsCosts[i];
if(i != seedsCosts.Length - 1)
{
inputArea += int.Parse(Console.ReadLine());
}
}
Console.WriteLine("Total costs: {0:F2}", totalCosts);
int areaDifference = totalArea - inputArea;
if (areaDifference > 0)
{
Console.WriteLine("Beans area: {0}", areaDifference);
}
else if (areaDifference < 0)
{
Console.WriteLine("Insufficient area");
}
else
{
Console.WriteLine("No area for beans");
}
}
}
}
view raw Garden.cs hosted with ❤ by GitHub