Advertisment

Computer Programming - Numbers

        Computer Programming - Numbers



Every programming language provides support for manipulating different types of numbers such as simple whole integers and floating point numbers. C, Java, and Python categorize these numbers in several categories based on their nature.
Let's go back and check the data types chapter, where we listed down the core data types related to numbers −
TypeKeywordValue range which can be represented by this data type
Numberint-32,768 to 32,767 or -2,147,483,648 to 2,147,483,647
Small Numbershort-32,768 to 32,767
Long Numberlong-2,147,483,648 to 2,147,483,647
Decimal Numberfloat1.2E-38 to 3.4E+38 till 6 decimal places
These data types are called primitive data types and you can use these data types to build more data types, which are called user-defined data types.
We have seen various mathematical and logical operations on numbers during a discussion on operators. So we know how to add numbers, subtract numbers, divide numbers, etc.
First let's see how to print various types of numbers available in C programming language −
 
#include <stdio.h>

int main() {
short s;
int i;
long l;
float f;
double d;

s
= 10;
i
= 1000;
l
= 1000000;
f
= 230.47;
d
= 30949.374;

printf
( "s: %d\n", s);
printf
( "i: %d\n", i);
printf
( "l: %ld\n", l);
printf
( "f: %.3f\n", f);
printf
( "d: %.3f\n", d);
}
Rest of the coding is very obvious, but we used %.3f to print float and double, which indicates the number of digits after the decimal to be printed. When the above program is executed, it produces the following result −
s: 10
i: 1000
l: 1000000
f: 230.470
d: 30949.374

Math Operations on Numbers

The following table lists down various useful built-in mathematical functions available in C programming language which can be used for various important mathematical calculations.
For example, if you want to calculate the square root of a number, for example, 2304, then you have a built-in function available to calculate the square root.
Sr.No.Function & Purpose
1double cos(double);
This function takes an angle (as a double) and returns the cosine.
2double sin(double);
This function takes an angle (as a double) and returns the sine.
3double tan(double);
This function takes an angle (as a double) and returns the tangent.
4double log(double);
This function takes a number and returns the natural log of that number.
5double pow(double, double);
The first is a number you wish to raise and the second is the power you wish to raise it to.
6double hypot(double, double);
If you pass this function the length of two sides of a right triangle, it will return the length of the hypotenuse.
7double sqrt(double);
You pass this function a number and it returns its square root.
8int abs(int);
This function returns the absolute value of an integer that is passed to it.
9double fabs(double);
This function returns the absolute value of any decimal number passed to it.
10double floor(double);
Finds the integer which is less than or equal to the argument passed to it.
Following is a simple example to show a few mathematical operations. To utilize these functions, you need to include the math header file <math.h> in your program in the same way you included stdio.h
 
#include <stdio.h>
#include <math.h>

int main() {
short s;
int i;
long l;
float f;
double d;

printf
( "sin(s): %f\n", sin(10));
printf
( "abs(i): %f\n", abs(1000));
printf
( "floor(f): %f\n", floor(230.47));
printf
( "sqrt(l): %f\n", sqrt(1000000));
printf
( "pow(d, 2): %f\n", pow(2.374, 2));
}
When the above program is executed, it produces the following result −
sin(s): -0.544021
abs(i): -0.544021
floor(f): 230.000000
sqrt(l): 1000.000000
pow(d, 2): 5.635876
Besides the above usage, you will use numbers in loop counting, flag representation, true or false values in C programming.

Numbers in Java

Following is the equivalent program written in Java. Java provides almost all the numeric data types available in C programming.
You can try to execute the following program to see the output, which is identical to the result generated by the above C example.
 
public class DemoJava {
public static void main(String []args) {
short s;
int i;
long l;
float f;
double d;

s
= 10;
i
= 1000;
l
= 1000000L;
f
= 230.47f;
d
= 30949.374;

System.out.format( "s: %d\n", s);
System.out.format( "i: %d\n", i);
System.out.format( "l: %d\n", l);
System.out.format( "f: %f\n", f);
System.out.format( "d: %f\n", d);
}
}
When the above program is executed, it produces the following result −
s: 10
i: 1000
l: 1000000
f: 230.470001
d: 30949.374000
Java also provides a full range of built-in functions for mathematical calculation and you can use them in the same way as you did in C programming.

Numbers in Python

Python is a little different from C and Java; it categorizes numbers in int, long, float and complex. Here are some examples of numbers in Python −
intlongfloatcomplex
1051924361L0.03.14j
100-0x19323L15.2045.j
-7860122L-21.99.322e-36j
0800xDEFABCECBDAECBFBAEl32.3+e18.876j
-0490535633629843L-90.-.6545+0J
-0x260-052318172735L-32.54e1003e+26J
0x69-4721885298529L70.2-E124.53e-7j
Following is the equivalent program written in Python −
 
s = 10
i
= 1000
l
= 1000000
f
= 230.47
d
= 30949.374

print "s: ", s
print "i: ", i
print "l: ", l
print "f: ", f
print "d: ", d
When the above program is executed, it produces the following result −
s:  10
i: 1000
l: 1000000
f: 230.47
d: 30949.374
Python also provides a full range of built-in functions for mathematical calculations and you can use them in the same way you have used them in C programming.





computer programmer
computer programmer salary
computer programmer salary texas
computer programmer salary california
computer programing classes
computer programing languages
computer programing for kids
computer programmer jobs
computer programing schools
computer programing colleges
computer programing apps
computer programs and games are called what
computer programs and systems
computer programs are also known as
computer programs and software
computer programs are also called
computer programs and applications
computer programs and systems stock
computer of programing language
definition of a computer programing
what is the average salary of a computer programmer
what computer programmer do
what exactly does a computer programmer do
what is the salary of a computer programmer
computer programing bootcamp
computer programming basics
computer programing brainpop
computer programs book pdf
computer programmer background
computer programs beginning with d
computer programs books for beginners
computer programs book
computer programing classes near me
computer programing colleges near me
computer programing camp
computer programing classes online
computer programmer companies
computer programmer certification
c computer programing language
computer c programs code
computer programmer degree
computer programmer definition
computer programing degree online

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.