mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 12:10:40 +02:00
16 lines
173 B
C++
16 lines
173 B
C++
#include <iostream>
|
|
|
|
class Samochod {
|
|
private:
|
|
std::string marka;
|
|
int rok;
|
|
|
|
public:
|
|
Samochod(std::string m, int r) {
|
|
marka = m;
|
|
rok = r;
|
|
}
|
|
};
|
|
|
|
int main() {}
|