IvetValcheva

USD to BGN

Jan 10th, 2022
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2.  
  3. namespace First_Steps_In_Coding
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             //четем от конзолата usd
  10.             double usd = double.Parse(Console.ReadLine());
  11.  
  12.             //преобразуваме bgn = usd*1.79549;
  13.             double bgn = usd * 1.79549;
  14.  
  15.             //изписваме на конзолата bgn
  16.             Console.WriteLine(bgn+" ");
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment