Advertisement
drakon-firestone

Untitled

Sep 29th, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. // Klasa Pojazd
  2.  
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8.  
  9. namespace Lekcja3.Klasy
  10. {
  11. internal class Pojazd
  12. {
  13. public string Marka;
  14. public int Moc;
  15. public string Kolor;
  16. public decimal Cena;
  17.  
  18. public Pojazd(string marka, int moc, string kolor, decimal cena)
  19. {
  20. Marka = marka;
  21. Moc = moc;
  22. Kolor = kolor;
  23. Cena = cena;
  24. }
  25.  
  26. public void UruchomSilnik()
  27. {
  28. Console.WriteLine("Uruchomiono silnik samochodu...");
  29. }
  30. }
  31. }
  32.  
  33.  
  34.  
  35. // KLASA Samochod
  36. using Lekcja3.Klasy;
  37. using System;
  38. using System.Collections.Generic;
  39. using System.Linq;
  40. using System.Security.Authentication.ExtendedProtection;
  41. using System.Text;
  42. using System.Threading.Tasks;
  43.  
  44. namespace Lekcja3
  45. {
  46. internal class Samochod : Pojazd
  47. {
  48. public int MaxLiczbaPasazerow;
  49. public int LiczbaDrzwi;
  50.  
  51. public Samochod(string marka, int moc, string kolor, decimal cena, int maxLiczbaPasazerow, int liczbaDrzwi)
  52. : base(marka, moc, kolor, cena)
  53. {
  54. MaxLiczbaPasazerow = maxLiczbaPasazerow;
  55. LiczbaDrzwi = liczbaDrzwi;
  56. }
  57.  
  58.  
  59.  
  60. }
  61. }
  62.  
  63.  
  64.  
  65. // klasa Program
  66. using System;
  67. using System.Collections.Generic;
  68. using System.Linq;
  69. using System.Text;
  70. using System.Threading.Tasks;
  71.  
  72. namespace Lekcja3
  73. {
  74. internal class Program
  75. {
  76. static void Main(string[] args)
  77. {
  78. Samochod auto1 = new Samochod("Mercedes-Benz", 224, "biały", 159900, 5, 4);
  79. auto1.UruchomSilnik();
  80.  
  81. Console.ReadLine();
  82. }
  83. }
  84. }
  85.  
  86.  
  87.  
  88.  
  89.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement