Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApplication1
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. double value = double.Parse(Console.ReadLine());
  14. string firstCurrency = Console.ReadLine();
  15. string secondCurrency = Console.ReadLine();
  16.  
  17.  
  18.  
  19. if (firstCurrency == "EUR" && secondCurrency == "USD")
  20. {
  21.  
  22. }
  23.  
  24. else if (firstCurrency == "EUR" && secondCurrency == "BGN")
  25. {
  26.  
  27. }
  28.  
  29. else if (firstCurrency == "EUR" && secondCurrency == "GBP")
  30. {
  31.  
  32. }
  33.  
  34. else if (firstCurrency == "BGN" && secondCurrency == "GBP")
  35. {
  36.  
  37. }
  38.  
  39. else if (firstCurrency == "BGN" && secondCurrency == "EUR")
  40. {
  41.  
  42. }
  43.  
  44. else if (firstCurrency == "BGN" && secondCurrency == "USD")
  45. {
  46.  
  47. }
  48.  
  49. else if (firstCurrency == "GBP" && secondCurrency == "USD")
  50. {
  51.  
  52. }
  53.  
  54. else if (firstCurrency == "GBP" && secondCurrency == "BGN")
  55. {
  56.  
  57. }
  58.  
  59. else if (firstCurrency == "GBP" && secondCurrency == "EUR")
  60. {
  61.  
  62. }
  63. else if (firstCurrency == "USD" && secondCurrency == "BGN")
  64. {
  65.  
  66. }
  67.  
  68. else if (firstCurrency == "USD" && secondCurrency == "GBP")
  69. {
  70.  
  71. }
  72.  
  73. else if (firstCurrency == "USD" && secondCurrency == "EUR")
  74. {
  75.  
  76. }
  77.  
  78. }
  79. }
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement