Решение
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | |
} | |
} | |
} | |
} |