Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace USD_to_BGN
- {
- class Program
- {
- static void Main(string[] args)
- {
- var USD = Double.Parse(Console.ReadLine());
- var BGN = (USD* 1.79549);
- Console.WriteLine(Math.Round (BGN, 2));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment