You are on page 1of 8

A

MICROPROJECT REPORT
ON

“ Arithmetic Operation ”

SUBMITTED BY:
• Shriram Akshay Dattu

• Katore Niranjan Dipak

• Gaikwad Ganesh Arun

UNDER THE GUIDENCE OF


Prof. Wayse Sir.

DEPARTMENT OF CO ENGINEERING
HSBPVT’s PARIKRAMA POLYTECHNIC, KASHTI
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION MUMBAI
DEPARTMENT OF CO ENGINEERING
HSBPVT’s PARIKRAMA POLYTECHNIC, KASHTI
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION MUMBAI

Certificate

This is certified that Mr./Ms._________________________________________________ Roll


No _________ of 4th Semester of Diploma in COMPUTER ENGINEERING of institute HSBPVT’s
Parikrama Polytechnic, Kashti (Code :1169) has completed the micro-project satisfactorily in
course GUI (22034) for the academic year 2018-2019 as prescribed in the curriculum.

Place: Kashti Enrollment No______________

Date: ____________ Exam Seat No_______________

Subject Teacher Head of Dept. Principal

INDEX
Sr. Content Page No.
No.
1 Introduction 1

2 Aim 2

3 Course Outcome 3

4 Algorithm and Flowchart 4

5 Program 5

6 Output 6

7 Characteristics 7

8 Conclusion 8

9 References 9

• Introduction :
• The basic arithmetic operations are addition, subtraction, multiplication and division,
although this subject also includes more advanced operations, such as manipulations of
percentages, square roots, exponentiation, logarithmic functions, and even
trigonometric functions, in the same vein as logarithms ( ...

• AIM :
To write a program using Arithmetic operation .
• Course Outcome :
After studying this course, you should be able to:
write whole numbers and decimals in place-value columns and compare their sizes
multiply and divide whole numbers and decimals by 10, 100, 1000 and so on
indicate given fractions on a diagram and find equivalent fractions for a given fraction
mark numbers on a number line
choose appropriate units for a given purpose.

• Algorithm :

1. Start
2. Enter (assigne) value of the variable (addend) X
3. Enter (assigne) value of the variable (addend) Y
4. Calculate Z (Z = X + Y)
5. Display result of addition, value of Z on the monitor with the message "The sum of X
and Y is:"
6. Ask the question "Do you want to re-start the program <Y / N>?" and set value to
the response variable ANSWER
7. If the ANSWER is "Yes," go to Step 1
8. If the ANSWER is "No," go to Step 9
9. End

• Flowchart :
• Program:

#include <stdio.h>

int main()

int first, second, add, subtract, multiply;

float divide;

printf("Enter two integers\n");

scanf("%d%d", &first, &second);

add = first + second;

subtract = first - second;

multiply = first * second;

divide = first / (float)second; //typecasting

printf("Sum = %d\n", add);

printf("Difference = %d\n", subtract);

printf("Multiplication = %d\n", multiply);

printf("Division = %.2f\n", divide);

return 0;

• Outputs :
• Characteristics :

The basic arithmetic operations for real numbers are addition, subtraction, multiplication, and
division.
The basic arithmetic properties are the commutative, associative, and distributive properties.

• Conclusion :

Algorithms for the basic arithmetic operations were implemented for these representations. A number of

different techniques are used to obtain these algorithms, including exploiting the relationship between the list

operation `cons' and numerical average, using certain identities, and analysing of the range of possible values

of a stream starting with a given digit or sequence of digits.

• References :
1] Reference Book

2] Text Book

3] www.google.com

4] www.youtube.com

You might also like