You are on page 1of 2

ACKNOWLEDGEMENT

As usual a large number of people deserve my thanks for the help

they provided me for the preparation of this term paper.

First of all I would like to thank my teacher Lect. Chetna mam for her support during the preparation of
this topic. I am very thankful for her guidance.

I would also like to thank my friends for the encouragement and information about the topic they
provided to me during my efforts to prepare this topic.

At last but not the least I would like to thank seniors for providing me

their experience and being with me during my work

TABLE OF CONTENT:-

1.1 Introduction

1.2 Logic of the programme

1.2.1 Creating the standard calculator

1.2.2 Creating the scientific calculator

1.3 Control diagrame

1.4 Output screen

1.5 Source code of scientific calculator

1.6 Refernces

1.1 INTRODUCTION:-

Accordingly, this project aims to develop source code in the form of a computer
program i.e c++ that a scientific calculator could use to compute functions
such as square root, the exponential, and sine functions and etc. The idea of this

project that

1.Since all the mathematical function such as sin function, cos function,

logarithm function are define in the library function of <math.h>, thus we

have return the value of the function to call function.


2. For menu deriven programme, here we have to use switch-case statement.

3. In this programme ,there are two type of calculator,

a). Standard calculator.

b). Scientific calculator.

4.The standard calculator contain simple function such as addition ,

substraction etc. whereas the scientific calculator contain function sin ,

cosin, tan, exponential function etc.

The code of the calculator application mainly comprise of two classes standard
calculator and scientific calculator. The standard calculator class helps to
perform stanandard calculation. The scientific calculator class in the other hand,
helps to perform scientific calculations. Both classes contain static function so
a to ensure that these function can be called in the main function through class
name.

You might also like