Advertisement
dragonbs

Salary

Oct 11th, 2022
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.06 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _05._Salary
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int wrongTabs = int.Parse(Console.ReadLine());
  10.             int salary = int.Parse(Console.ReadLine());
  11.  
  12.             for (int tab = 1; tab <= wrongTabs; tab++)
  13.             {
  14.                 string website = Console.ReadLine();
  15.                 switch (website)
  16.                 {
  17.                     case "Facebook":
  18.                         salary -= 150;
  19.                         break;
  20.                     case "Instagram":
  21.                         salary -= 100;
  22.                         break;
  23.                     case "Reddit":
  24.                         salary -= 50;
  25.                         break;
  26.                 }
  27.  
  28.                 if (salary <= 0)
  29.                 {
  30.                     Console.WriteLine("You have lost your salary.");
  31.                     break;
  32.                 }
  33.             }
  34.  
  35.             if (salary > 0)
  36.             {
  37.                 Console.WriteLine(salary);
  38.             }
  39.         }
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement