implement class and object(c++)

implement class and object

#include<iostream>
using namespace std;
class item
{
    int number;// private by default
    float cost;//privale by defaault
    public:
    void getdata(int a ,float b);  //prototype declaration to be defined
//............function defined in class..........
void putdata(void)
 {
     cout<<"number:"<< number<<"\n";
     cout<<"cost:"<<cost <<"\n";
 }
};
//............member function definetion >>..............
       void item::getdata(int a ,float b)//use membership label
{
    number =a;// private variable directly used
    cost=b;
}
//..............main program..............
    int main()
{
    item x;
    cout<<"\n object x "<<"\n";
    x.getdata(100,299.95); // call number function
    x.putdata(); // call number function
    item y; //create another object
    cout<<"\n object y "<<"\n";
    y.getdata(200 , 175.50);
    y.putdata();
    item z;
    cout<<"\n object z "<<"\n";
    z.getdata(800 , 1345.8);
    z.putdata();
    return 0;
}

output---


 


 

Comments

Popular posts from this blog

if the marks obtain by a student in five different subjects are input through the keyboard write a program to find out the aggregate marks and percentage marks obtained by the student. assume that the maximum marks that can be obtained by a student in each subject is 100.

the length and breadth of a rectangle and radius of a circle are input through the keyboard. write a program to calculate the area and perimeter of the rectangle, and the area and circumference of the circle

If lengths of three sides of a tringle are input through the keyboard write a program to find the area of tringle.