Advertisement
Spocoman

Juice Diet

Oct 9th, 2023
911
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.22 KB | None | 0 0
  1. using System;
  2.  
  3. namespace JuiceDiet
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int r = int.Parse(Console.ReadLine());
  10.             int s = int.Parse(Console.ReadLine());
  11.             int c = int.Parse(Console.ReadLine());
  12.             int maxJuice = int.Parse(Console.ReadLine());
  13.  
  14.             double juice = 0;
  15.             int raspberries = 0, strawberries = 0, cherries = 0;
  16.            
  17.             for (int j = 0; j <= r; j++)
  18.             {
  19.                 for (int k = 0; k <= s; k++)
  20.                 {
  21.                     for (int l = 0; l <= c; l++)
  22.                     {
  23.                        double currentJuice = 4.5 * j + 7.5 * k + 15 * l;
  24.                         if(juice < currentJuice && currentJuice <= maxJuice)
  25.                         {
  26.                             juice = currentJuice;
  27.                             raspberries = j;
  28.                             strawberries = k;
  29.                             cherries = l;
  30.                         }
  31.                     }
  32.                 }
  33.             }
  34.  
  35.             Console.WriteLine($"{raspberries} Raspberries, {strawberries} Strawberries, {cherries} Cherries. Juice: {juice} ml.");
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement