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