Advertisement
Spocoman

Hair Salon

Nov 26th, 2021
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.79 KB | None | 0 0
  1. using System;
  2.  
  3. namespace HairSalon
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int target = int.Parse(Console.ReadLine());
  10.             int sum = 0;
  11.  
  12.             while (target > sum)
  13.             {
  14.                 string service = Console.ReadLine();
  15.                 if (service == "closed")
  16.                 {
  17.                     break;
  18.                 }
  19.                 else
  20.                 {
  21.                     string person = Console.ReadLine();
  22.                     if (service == "haircut")
  23.                     {
  24.                         if (person == "mens")
  25.                         {
  26.                             sum += 15;
  27.                         }
  28.                         else if (person == "ladies")
  29.                         {
  30.                             sum += 20;
  31.                         }
  32.                         else if (person == "kids")
  33.                         {
  34.                             sum += 10;
  35.                         }
  36.                     }
  37.                     else if (service == "color")
  38.                     {
  39.                         if (person == "touch up")
  40.                         {
  41.                             sum += 20;
  42.                         }
  43.                         else if (person == "full color")
  44.                         {
  45.                             sum += 30;
  46.                         }
  47.                     }
  48.                 }
  49.             }
  50.             if (sum >= target)
  51.             {
  52.                 Console.WriteLine("You have reached your target for the day!");
  53.             }
  54.             else
  55.             {
  56.                 Console.WriteLine($"Target not reached! You need {target - sum}lv. more.");
  57.             }
  58.             Console.WriteLine($"Earned money: {sum}lv.");
  59.         }
  60.     }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement