Advertisement
terlichki

Untitled

May 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Problem_4._Tourist_Information
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. string imperialUnite = Console.ReadLine();
  10. float value = float.Parse(Console.ReadLine());
  11. float kilometers = 0;
  12. switch (imperialUnite)
  13. {
  14. case "miles":
  15. kilometers=(float)(value * 1,50);
  16. break;
  17. }
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement