Advertisement
knoteva

Untitled

Oct 14th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. using System;
  2.                    
  3. public class Program
  4. {
  5.     public static void Main()
  6.     {
  7.          double usd = double.Parse(Console.ReadLine());
  8.             double bgn = usd * 1.79549;
  9.             Console.WriteLine("{0:F2}", bgn);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement