Имитирование целочисленного типа int ,
Сложение двух значений!. :)

//------------------------------------------------------------------------------------------------
#include <iostream>
#include <conio.h>

using namespace std;
class Int
{
private:
int number;
public:
Int(): number(0)
{}
Int(int i): number(i)
{}
void visual() const
{cout<<"Integer score: "<<number<<endl;}
Int summa(Int) const;
};
//---------------------------------------------
Int Int::summa(Int i) const
{return i.number+number;}
//=============================================
int main()
{
Int chislo3;
Int chislo1(10);
Int chislo2(15);
chislo1.visual();
chislo2.visual();
chislo3= chislo1.summa(chislo2);
chislo3.visual();
getch();
return 0;
}

//------------------------------------------------------------------------------------------------

Хакинг | Главная | Программирование

Hosted by uCoz