Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace PoundsToDollars
- {
- class Program
- {
- static void Main()
- {
- Console.WriteLine($"{decimal.Parse(Console.ReadLine()) * 131 / 100:F3}");
- // или: Console.WriteLine($"{int.Parse(Console.ReadLine()) * 1.31:F3}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement