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 lengths of three sides of a tringle are input through the keyboard write a program to find the area of tringle.

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

paper of size A0 has dimensions 1189 mmx 841 mm .Each subsequent size A(n) is defined as A(n-1) cut in half parallel to its shorter sides .Thus paper of size A1 would have dimensions 841 mm X 594 mm .Write a program to calculate the print paper sizes A0,A1,A2,.........A8.