Hi,
I can`t understand how to do this task.
Can you help me ?
using System;
namespace Bottle
{
class Program
{
static void Main(string[] args)
{
string input = Console.ReadLine();
{
double bottle1 = 0.50;
double deposit1 = 0.10;
double bottle2 = 1;
double deposit2 = 0.25;
double result = ((bottle1 * 0.10) + (bottle2 * 0.25));
Console.WriteLine($"{result}");
}
}
}
}