Advertisement
Spocoman

Annual Salary

Sep 23rd, 2023
1,043
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.86 KB | None | 0 0
  1. using System;
  2.  
  3. namespace AnnualSalary
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int experience = int.Parse(Console.ReadLine());
  10.             string specialty = Console.ReadLine();
  11.  
  12.             double salary = 0;
  13.  
  14.             if (specialty == "C# Developer")
  15.             {
  16.                 salary = 5400;
  17.             }
  18.             else if (specialty == "Java Developer")
  19.             {
  20.                 salary = 5700;
  21.             }
  22.             else if (specialty == "Front-End Web Developer")
  23.             {
  24.                 salary = 4100;
  25.             }
  26.             else if (specialty == "UX / UI Designer")
  27.             {
  28.                 salary = 3100;
  29.             }
  30.             else if (specialty == "Game Designer")
  31.             {
  32.                 salary = 3600;
  33.             }
  34.  
  35.             if (experience <= 5)
  36.             {
  37.                 salary -= salary * 0.658;
  38.             }
  39.  
  40.             Console.WriteLine($"Total earned money: {salary * 12:f2} BGN");
  41.         }
  42.     }
  43. }    
  44.  
  45. Решение с тернарен оператор:
  46.  
  47. using System;
  48.  
  49. namespace AnnualSalary
  50. {
  51.     internal class Program
  52.     {
  53.         static void Main(string[] args)
  54.         {
  55.             int experience = int.Parse(Console.ReadLine());
  56.             string specialty = Console.ReadLine();
  57.  
  58.             double salary =
  59.                 specialty == "C# Developer" ? 5400 :
  60.                 specialty == "Java Developer" ? 5700 :
  61.                 specialty == "Front-End Web Developer" ? 4100 :
  62.                 specialty == "UX / UI Designer" ? 3100 :
  63.                 specialty == "Game Designer" ? 3600 : 0;
  64.  
  65.             if (experience <= 5)
  66.             {
  67.                 salary -= salary * 0.658;
  68.             }
  69.  
  70.             Console.WriteLine($"Total earned money: {salary * 12:f2} BGN");
  71.         }
  72.     }
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement