Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Klasa Pojazd
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Lekcja3.Klasy
- {
- internal class Pojazd
- {
- public string Marka;
- public int Moc;
- public string Kolor;
- public decimal Cena;
- public Pojazd(string marka, int moc, string kolor, decimal cena)
- {
- Marka = marka;
- Moc = moc;
- Kolor = kolor;
- Cena = cena;
- }
- public void UruchomSilnik()
- {
- Console.WriteLine("Uruchomiono silnik samochodu...");
- }
- }
- }
- // KLASA Samochod
- using Lekcja3.Klasy;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Security.Authentication.ExtendedProtection;
- using System.Text;
- using System.Threading.Tasks;
- namespace Lekcja3
- {
- internal class Samochod : Pojazd
- {
- public int MaxLiczbaPasazerow;
- public int LiczbaDrzwi;
- public Samochod(string marka, int moc, string kolor, decimal cena, int maxLiczbaPasazerow, int liczbaDrzwi)
- : base(marka, moc, kolor, cena)
- {
- MaxLiczbaPasazerow = maxLiczbaPasazerow;
- LiczbaDrzwi = liczbaDrzwi;
- }
- }
- }
- // klasa Program
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Lekcja3
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Samochod auto1 = new Samochod("Mercedes-Benz", 224, "biały", 159900, 5, 4);
- auto1.UruchomSilnik();
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement