Advertisement
Cassimus

powtorka1

Sep 7th, 2024
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. internal class Program
  2. {
  3.  
  4. static void Main(string[] args)
  5. {
  6. Console.WriteLine("Witam to jest mój program konsolowy - Grzegorz");
  7.  
  8. string ulubionaPotrawa = "Zrazy wolowe";
  9. ushort wiek = 44;
  10. decimal kieszonkowe = 365.25m;
  11. char rozmiar = 'L';
  12. bool czyExtraRozmiar = true;
  13.  
  14. Console.WriteLine($"Mam {wiek} i lubię {ulubionaPotrawa}.");
  15.  
  16. for (int i = 0; i < 50; i++)
  17. {
  18. Console.WriteLine("Jestem głodny");
  19. }
  20.  
  21. Console.WriteLine($"Ile kosztuje jedna porcja {ulubionaPotrawa}?");
  22.  
  23. if (decimal.TryParse(Console.ReadLine(), out decimal cenaPotrawy))
  24. {
  25. if (cenaPotrawy > 0 && kieszonkowe / cenaPotrawy >= 1)
  26. {
  27. int ilosc = (int)(kieszonkowe / cenaPotrawy);
  28.  
  29. Console.WriteLine($"Mozesz kupić {ilosc} porcji {ulubionaPotrawa}.");
  30. }
  31. else
  32. {
  33. Console.WriteLine($"Brak kieszonkowych na {ulubionaPotrawa}");
  34. }
  35. }
  36.  
  37. Console.WriteLine(ZamienRozmiar(rozmiar));
  38.  
  39. Console.WriteLine(ZamienRozmiarExtra('S', czyExtraRozmiar));
  40. Console.WriteLine(ZamienRozmiarExtra('M', czyExtraRozmiar));
  41. Console.WriteLine(ZamienRozmiarExtra('L', false));
  42. }
  43.  
  44. static string ZamienRozmiar(char rozmiar)
  45. {
  46. switch (rozmiar)
  47. {
  48. case 'S':
  49. return "Small";
  50. case 'M':
  51. return "Medium";
  52. case 'L':
  53. return "Large";
  54. default:
  55. return "Nie znam tego rozmiaru!";
  56. }
  57. }
  58.  
  59. static string ZamienRozmiarExtra(char rozmiar, bool isExtra)
  60. {
  61. string rozmiarPelny = ZamienRozmiar(rozmiar);
  62.  
  63. if (isExtra && rozmiar != 'M')
  64. {
  65. rozmiarPelny = "Extra " + rozmiarPelny;
  66. }
  67.  
  68. return rozmiarPelny;
  69. }
  70.  
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement