|
Private: double vagonlar soni,bekatlar soni,tezligi
|
tarix | 19.04.2023 | ölçüsü | 99,75 Kb. | | #100764 |
| abduxalilov Gʻolibjon mus ishi
Abduxalilov Gʻolibjon 1 - Mustaqil ishi
1-topshiriq
#include
using namespace std;
class metro
{
private:
double vagonlar_soni,bekatlar_soni,tezligi;
string bekat_nomi;
public:
void malumot (double t, string bn)
{
tezligi = t; bekat_nomi = bn;
cout << "Metro "<}
void malumot_2 (double vs,double bs)
{
vagonlar_soni = vs; bekatlar_soni = bs;
cout << "Metroni vagonlar soni: " << vagonlar_soni <}
};
int main ()
{
metro m;
m.malumot(40,"Mirzo Ulug'bek");
m.malumot_2(10,15);
}
2-topshiriq
#include
using namespace std;
class metro
{
private:
double bekatda_turiw_vaqt,vaqt;
string bekat_nomi,bekat_nomi2;
public:
metro (double v,string bs,double t, string bn)
{
bekatda_turiw_vaqt = v; bekat_nomi2 = bs; vaqt = t; bekat_nomi = bn;
}
void malumot ()
{
cout << "Metro soat "<}
void malumot_2 ()
{
cout << "Metroni bekatda turish vaqti: " << bekatda_turiw_vaqt <<" minut \nMetroni keyingi bekati: "<}
};
int main ()
{
metro m (5,"Hamza",12.05,"Mirzo Ulug'bek");
m.malumot ();
m.malumot_2 ();
}
3-topshiriq
#include
using namespace std;
class metro
{
private:
double vaqt1,vaqt2;
string bekat_nomi1,bekat_nomi2;
public:
void malumot (double v1, string bn1)
{
vaqt1 = v1; bekat_nomi1 = bn1;
cout << "Metro soat "<}
void malumot_2 (double v2,string bn2)
{
vaqt2 = v2; bekat_nomi2 = bn2;
cout << "Metroni to'xtab turish vaqti: " << vaqt2 <<" minut \nMetroni keyingi bekati: "<}
};
class metro_1 :public metro
{
};
int main ()
{
metro m;
m.malumot (9.35,"Xalqlar do'stligi");
m.malumot_2(5,"Paxtakor");
metro_1 m1;
m1.malumot (9.45,"Paxtakor");
m1.malumot_2(5,"Mustaqillik maydoni");
}
Dostları ilə paylaş: |
|
|