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