IvetValcheva

USD to BGN

Apr 4th, 2021
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Exercise_FurstStepsInProgramming_Demo
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             //конвертиране на щатски долари (USD) в български лева (BGN) 1 USD = 1.79549 BGN
  10.  
  11.             double usd = double.Parse(Console.ReadLine());
  12.  
  13.             double bgn = usd * 1.79549;
  14.  
  15.             Console.WriteLine(bgn);
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment