Welcome back to our COBOL programming course! In the last lesson, you learned how to perform simple arithmetic operations like addition and subtraction. Now, it's time to expand on that knowledge and explore more arithmetic operations — specifically multiplication and division. Understanding these operations is essential, as they are commonly used in business applications for tasks such as financial calculations and data analysis.
In this lesson, you will learn:
-
Multiplication:
- Using the
MULTIPLYstatement to multiply numeric values.
- Using the
-
Division:
- Using the
DIVIDEstatement to divide numeric values and how to handle remainders.
- Using the
Let's see how these operations work in COBOL with an example:
-
Multiplication:
- The
MULTIPLYstatement multipliesValue1byValue2and stores the result inResult:
- The
-
Division:
-
The
DIVIDEstatement dividesValue2byValue1and stores the result inResult: -
Handling remainders is an important part of division. In the example above, we divide 485 by 10. The
GIVINGclause stores the quotient inResult, and theREMAINDERclause stores the remainder inResult-Remainder:
-
