Advertisement
IvetValcheva

01. USD to BGN

Mar 10th, 2024
499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.13 KB | None | 0 0
  1.  
  2. //1 USD = 1.79549 BGN
  3.  
  4. double usd = double.Parse(Console.ReadLine());
  5.  
  6. double bgn = usd * 1.79549;
  7.  
  8. Console.WriteLine(bgn);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement