Advertisement
dragonbs

USDToBGN

Sep 15th, 2022
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _01.USDТoBGN
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             // 1. Запазим USD, които идват от конзолата в променлива от тип double
  10.  
  11.             // 2. Преобразуваме USD в български лева
  12.  
  13.             // 3. Да си изведем резултата на конзолата
  14.  
  15.             double usd = double.Parse(Console.ReadLine());
  16.             double bgn = usd * 1.79549;
  17.             Console.WriteLine(bgn);
  18.         }
  19.     }
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement