Advertisement
Guest User

Dream Item

a guest
Apr 24th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.66 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7.  
  8.     class DreamItem
  9.     {
  10.         static void Main()
  11.         {
  12.             var data = Console.ReadLine().Split('\\');
  13.  
  14.             string months = data[0];
  15.             int daysPerMonth;
  16.             double moneyPerHour = double.Parse(data[1]);
  17.             int hoursPerDay = int.Parse(data[2]);
  18.             double itemPrice = double.Parse(data[3]);
  19.            
  20.             switch (months)
  21.             {
  22.                 case "Jan":
  23.                 case "Mar":
  24.                 case "May":
  25.                 case "July":
  26.                 case "Aug":
  27.                 case "Oct":
  28.                 case "Dec": daysPerMonth = 31 - 10;
  29.                     break;
  30.                 case "Apr":
  31.                 case "June":
  32.                 case "Sept":
  33.                 case "Nov": daysPerMonth = 30 - 10;
  34.                     break;
  35.                 default: daysPerMonth = 28 - 10;
  36.                     break;
  37.             }
  38.  
  39.             double moneyPerMonth = (moneyPerHour * hoursPerDay) * daysPerMonth;
  40.            
  41.             if (moneyPerMonth > 700)
  42.             {
  43.                  moneyPerMonth += (moneyPerMonth * 0.1);
  44.             }
  45.  
  46.             if (moneyPerMonth > itemPrice )
  47.             {
  48.                 double output = moneyPerMonth - itemPrice;
  49.                 Console.WriteLine("Money left = {0:F2} leva.", output);
  50.             }
  51.             else
  52.             {
  53.                 double output = itemPrice - moneyPerMonth;
  54.                 Console.WriteLine("Not enough money. {0:F2} leva needed.", output);
  55.             }
  56.         }
  57.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement