mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 12:10:40 +02:00
12 lines
183 B
C++
12 lines
183 B
C++
#include <string>
|
|
|
|
class Samochod {
|
|
std::string marka;
|
|
int predkosc;
|
|
|
|
Samochod(std::string marka, int predkosc) {
|
|
this->marka = marka;
|
|
this->predkosc = predkosc;
|
|
}
|
|
};
|