Advertisement
AlexTasev

Converter_USD_BGN

Jun 10th, 2018
509
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Converter_USD_BGN
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.Write("Enter value in USD: ");
  10.             double usd = double.Parse(Console.ReadLine());
  11.             double bgn = usd * 1.79549;
  12.             Console.Write("The value in BGN is: ");
  13.             Console.WriteLine(Math.Round(bgn, 2));
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement