C++

C++ Project on Matrix Calculator

Matrix Calculator

Name:

School:

Roll No:

Category: C++


Aim: A C++ program to implement a Matrix Calculator.


Program:

#include
#include
#include
#include
#include
#include
#include
#include

class Border
{
public:
    void body(void);
};

class Screen
{
public:
    void screen(void);
};

class Output:public Screen
{
public:
    void Text(char *);
    void Number(double);
};

class Button
{
public:
    void button_u(int,int,int,int,int,int,char*);
    void button_p(int,int,int,int,int,int,char*);
};

void Border::body(void)
{
    setcolor(WHITE);
    // rectangle(230,5,490,340);
    // rectangle(225,0,495,345);

Full program can be downloaded from http://projects.icbse.com/cpp/207.pdf

Share:

Comments from readers

Leave a Comment

Share your thoughts below. Comments appear after a quick review.

You may also want to see: