Advertisement
Guest User

Program

a guest
Jan 23rd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 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 ConsoleApp1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Samochod AsterkaBoza = new Samochod();
  14.             AsterkaBoza.WheelNumber = 4;
  15.             AsterkaBoza.MaxSpeed = 200;
  16.             AsterkaBoza.Print();
  17.             AsterkaBoza.uruchom();
  18.             AsterkaBoza.Speed = 60;
  19.             AsterkaBoza.Print1();
  20.             AsterkaBoza.przyspiesz(30);
  21.             AsterkaBoza.Print2();
  22.             AsterkaBoza.zatrzymaj();
  23.            
  24.  
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement