Advertisement
marto9119

Untitled

Jan 12th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 6.13 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace MyApp // Note: actual namespace depends on the project name.
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string tipeF = Console.ReadLine();
  10.             int flower = int.Parse(Console.ReadLine());
  11.             int money = int.Parse(Console.ReadLine());
  12.             double price = 0;
  13.             double nead = 0;
  14.  
  15.             if (tipeF == "Roses" && flower > 80)
  16.             {
  17.                 price = (flower * 5) * 0.9;
  18.  
  19.                 if (price > money)
  20.                 {
  21.                     nead = price - money;
  22.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  23.                 }
  24.                 else if (price <= money)
  25.                 {
  26.                     nead = money - price;
  27.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  28.                 }
  29.             }
  30.             else if (tipeF == "Roses" && flower <= 80)
  31.             {
  32.                 price = flower * 5;
  33.  
  34.                 if (price > money)
  35.                 {
  36.                     nead = price - money;
  37.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  38.                 }
  39.                 else if (price <= money)
  40.                 {
  41.                     nead = money - price;
  42.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  43.                 }
  44.             }
  45.             else if (tipeF == "Dahlias" && flower > 90)
  46.             {
  47.                 price = (flower * 3.80) * 0.85;
  48.  
  49.                 if (price > money)
  50.                 {
  51.                     nead = price - money;
  52.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  53.                 }
  54.                 else if (price <= money)
  55.                 {
  56.                     nead = money - price;
  57.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  58.                 }
  59.             }
  60.             else if (tipeF == "Dahlias" && flower <= 90)
  61.             {
  62.                 price = flower * 3.80;
  63.  
  64.                 if (price > money)
  65.                 {
  66.                     nead = price - money;
  67.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  68.                 }
  69.                 else if (price <= money)
  70.                 {
  71.                     nead = money - price;
  72.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  73.                 }
  74.             }
  75.             else if (tipeF == "Tulips" && flower > 80)
  76.             {
  77.                 price = (flower * 2.80) * 0.85;
  78.  
  79.                 if (price > money)
  80.                 {
  81.                     nead = price - money;
  82.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  83.                 }
  84.                 else if (price <= money)
  85.                 {
  86.                     nead = money - price;
  87.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  88.                 }
  89.             }
  90.             else if (tipeF == "Tulips" && flower <= 80)
  91.             {
  92.                 price = flower * 2.80;
  93.  
  94.                 if (price > money)
  95.                 {
  96.                     nead = price - money;
  97.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  98.                 }
  99.                 else if (price <= money)
  100.                 {
  101.                     nead = money - price;
  102.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  103.                 }
  104.             }
  105.             else if (tipeF == "Narcissus" && flower < 120)
  106.             {
  107.                 price = (flower * 3) * 1.15;
  108.  
  109.                 if (price > money)
  110.                 {
  111.                     nead = price - money;
  112.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  113.                 }
  114.                 else if (price <= money)
  115.                 {
  116.                     nead = money - price;
  117.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  118.                 }
  119.             }
  120.             else if (tipeF == "Narcissus" && flower >= 120)
  121.             {
  122.                 price = flower * 3;
  123.  
  124.                 if (price > money)
  125.                 {
  126.                     nead = price - money;
  127.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  128.                 }
  129.                 else if (price <= money)
  130.                 {
  131.                     nead = money - price;
  132.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  133.                 }
  134.             }
  135.             else if (tipeF == "Gladiolus" && flower < 80)
  136.             {
  137.                 price = (flower * 2.5) * 1.20;
  138.  
  139.                 if (price > money)
  140.                 {
  141.                     nead = price - money;
  142.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  143.                 }
  144.                 else if (price <= money)
  145.                 {
  146.                     nead = money - price;
  147.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  148.                 }
  149.             }
  150.             else if (tipeF == "Gladiolus" && flower >= 80)
  151.             {
  152.                 price = flower * 2.5;
  153.  
  154.                 if (price > money)
  155.                 {
  156.                     nead = price - money;
  157.                     Console.WriteLine($"Not enough money, you need {nead:f2} leva more.");
  158.                 }
  159.                 else if (price <= money)
  160.                 {
  161.                     nead = money - price;
  162.                     Console.WriteLine($"Hey, you have a great garden with {flower} {tipeF} and {nead:f2} leva left.");
  163.                 }
  164.  
  165.          
  166.             }
  167.         }  
  168.     }
  169. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement