Computer Programming/Mathematical calculations

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search
This computer programming article is available for pseudocode and Ada.


Contents

[edit] Simple Arithmetic

Most any programming language can use addition, subtraction, multiplication, and division between Computer programming/Variables to put the results into new Variables. Watch out for risk of Divide by Zero, which can give serious indigestion to some programming languages.

[edit] Date Math

Many programming languages can calculate the number of days weeks months between two dates, provided the dates are defined using consistent Computer programming/Types.

[edit] Higher Math

Some programming languages can compute values using mathematics beyond simple arithmetic, such as Square Roots, Sine, Cosine, Logarithms, Imaginary Numbers.

[edit] See also

If you want to know more you should read the sister article Ada_Programming/Mathematical_calculations which is a lot more elaborate.