Files
ZUT-notatki/uczelnia/2_semestr/programowanie/laby/lab6/zad7_2.cpp
2026-04-20 11:19:07 +02:00

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;
}
};