#include <iostream> #include <conio.h> using namespace std; // parametre aldırma class deneme{ int a,b; public: deneme(int x,int y){ a=x; b=y; } void goster(){ cout << a << endl << b; } }; main(){ deneme test(15,45); test.goster(); getch(); return 0; }