Реферат: Программирование на С++
if (a.ch[i]!=b.ch[i]) {k--;break;}
return k;
}
istream &operator >>(istream &in,stroka & A)
{ cout <<"\n\tInput string : ";
in.getline(A.ch,80,'\n');
return in;
}
ostream &operator <<(ostream &out,stroka & A)
{ out << A.ch;
return out;
}
Результат работы.
Input string : demon13 13 mon de |
Лабораторная работа №3
Написать программу с наследованием классов и виртуальными функциями.
Текст программы.
#include
class complex
{ public :
double x,y;
virtual void fun (int x=0, int y=0)=0;
};
class What_the_hell_we_got: public complex
{ public :
void fun (int x, int y)
{cout<<"\n What_the_hell_we_got "<< x<<"\t"<
};
class Plusssssss: public complex