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