Advertisement
EmoRz

DailyProfit

Jun 14th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.69 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. namespace DailyProfit
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             var workDayMonth = int.Parse(Console.ReadLine());
  14.             var moneyOnDay = double.Parse(Console.ReadLine());
  15.             var valuteDolar = double.Parse(Console.ReadLine());
  16.  
  17.             var moneyMonth = (workDayMonth * moneyOnDay)*14.5;
  18.             var tax = moneyMonth - (moneyMonth * 0.25);
  19.             var middleYear = tax / 365;
  20.             var onBGN = middleYear * valuteDolar;
  21.  
  22.             Console.WriteLine($"{onBGN:f2}");
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement