Computer Science, asked by prasad1748, 8 months ago

write a c++ program to declare a class 'Book' having data member book_ name author and price. accept and display for book having maximum price.​

Answers

Answered by pawarkalyani135
31

Explanation:

#include<iostream.h>

#include<stdio.h>

#include<conio.h>

class BOOK

{

int BOOKNO;

char BOOKTITLE[20];

float PRICE;

void TOTAL_COST(int N)

{

float tcost;

tcost=PRICE*N;

cout<<tcost;

}

public:

void INPUT()

{

cout<<"Enter Book Number ";

cin>>BOOKNO;

cout<<"Enter Book Title ";

gets(BOOKTITLE);

cout<<"Enter price per copy ";

cin>>PRICE;

}

void PURCHASE()

{

int n;

cout<<"Enter number of copies to purchase ";

cin>>n;

cout<<"Total cost is ";

TOTAL_COST(n);

}

};

void main()

{

BOOK obj;

obj.INPUT();

obj.PURCHASE();

getch();

}

Answered by adityasalunkhe888
1

Answer:

#include <iostram.h>

#include<conio.h>

class book

{

public:

char book_name[20]

Explanation:

.

Similar questions