mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 12:10:40 +02:00
16 lines
189 B
C++
16 lines
189 B
C++
#include <iostream>
|
|
|
|
class Prostokat {
|
|
private:
|
|
int a;
|
|
int b;
|
|
|
|
public:
|
|
Prostokat(int x, int y) : a(x), b(y) {}
|
|
};
|
|
Prostokat p1;
|
|
Prostokat p2(2, 3);
|
|
Prostokat p3{4, 5};
|
|
|
|
int main() {}
|