//Class Rectangle with length and breadth as private members
//and appropriate member functions to read data, calculate and display area
#include <iostream>
using namespace std;
class Rectangle
{
private:
float l,b,a;
public:
void ReadData()
{
//and appropriate member functions to read data, calculate and display area
#include <iostream>
using namespace std;
class Rectangle
{
private:
float l,b,a;
public:
void ReadData()
{
No comments:
Post a Comment