Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 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 Garcia_5
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13.  
  14. String zodiac;
  15.  
  16. Console.Write("Your Zodiac Sign: ");
  17. zodiac = Console.ReadLine();
  18.  
  19. if (zodiac == "AQUARIUS" || zodiac == "aquarius" )
  20. {
  21. Console.Write("Your Horoscope: You will have lucky day everyday. Lucky color is any color. 1 is your lucky number");
  22. }
  23. else if (zodiac == "CAPRICORN" || zodiac == "capricorn")
  24. {
  25. Console.Write("Your Horoscope: You will have a lucky day. Lucky color is green. Lucky number is 90");
  26. }
  27. else if (zodiac == "SAGITTARIUS" || zodiac == "sagittarius")
  28. {
  29. Console.Write("Your Horoscope: You will have a bad day. Lucky color is yellow. Lucky number is 6"); ;
  30. }
  31. else if (zodiac == "SCORPIO" || zodiac == "scorpio")
  32. {
  33. Console.Write("Your Horoscope: You will have a good day. Lucky color is pink. Lucky number is 3"); ;
  34. }
  35. else if (zodiac == "LIBRA" || zodiac == "libra")
  36. {
  37. Console.Write("Your Horoscope: You will have a productive day. Lucky color is white. Lucky number is 7"); ;
  38. }
  39. else if (zodiac == "VIRGO" || zodiac == "virgo")
  40. {
  41. Console.Write("Your Horoscope: You will have a bad day. Lucky color is black. Lucky number is 13"); ;
  42. }
  43. else if (zodiac == "LEO" || zodiac == "leo")
  44. {
  45. Console.Write("Your Horoscope: You will have a stale day. Lucky color is violet. Lucky number is 4"); ;
  46. }
  47. else if (zodiac == "CANCER" || zodiac == "cancer")
  48. {
  49. Console.Write("Your Horoscope: You will have a stressful day. Lucky color is rainbow. Lucky number is 8"); ;
  50. }
  51. else if (zodiac == "GEMINI" || zodiac == "gemini")
  52. {
  53. Console.Write("Your Horoscope: You will have a wonderful day. Lucky color is orange. Lucky number is 9"); ;
  54. }
  55. else if (zodiac == "TAURUS" || zodiac == "taurus")
  56. {
  57. Console.Write("Your Horoscope: You will have a sad day. Lucky color is gray. Lucky number is 10"); ;
  58. }
  59. else if (zodiac == "ARIES" || zodiac == "aries")
  60. {
  61. Console.Write("Your Horoscope: You will have a miserable day. Lucky color is sky blue. Lucky number is 11"); ;
  62. }
  63. else if (zodiac == "PISCES" || zodiac == "pisces")
  64. {
  65. Console.Write("Your Horoscope: You will have a big day. Lucky color is feuscha pink. Lucky number is 12"); ;
  66. }
  67.  
  68.  
  69. Console.ReadKey();
  70. }
  71. }
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement