Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Exercise_FurstStepsInProgramming_Demo
- {
- class Program
- {
- static void Main(string[] args)
- {
- //конвертиране на щатски долари (USD) в български лева (BGN) 1 USD = 1.79549 BGN
- double usd = double.Parse(Console.ReadLine());
- double bgn = usd * 1.79549;
- Console.WriteLine(bgn);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment