double

Java Lesson 02 – Numbers

Learning about numbers

In the previous lession you learned about the Object type String used to contain text. In this lession you will learn about the various object types that can hold numbers.

We will start with creating a new project. Calls this project Lesson 2. After that create a Main class again, just like in the previous lesson. If you forgot how to do that look it up in Lesson 1.

The most used types for numbers are Integer and Double. Lets start with Integers. An Integer is most often refered to as an int. Integers are always whole numbers with no decimals.

Try the following example:

int i = 1;
int j = 1.0; //will give an error

double d = 1;
double d2 = 1.0;

int k = d; //will give an error
double d3 = i;

As you can see in the example above an int can be converted to a double, but a double cant be converted to an int.

Basic Calculations

Lets start with some basic calculations answers are down below, but try solving them yourself first before looking at the answers.

Some basic math first. Remember it is * / before + –

int i = 10;
int j = 8;
int k = 2;

// 1
System.out.println( i + j - k);

// 2
System.out.println( i - j + k);

// 3
System.out.println( i * k + j);

// 4
System.out.println( i + j * k);

// 5
System.out.println( i * k + k * j);

// 6
System.out.println( i + k * k + j);
Answers SelectShow

Next some calculations with round brackets. Calculations inside round brackets go first.

// 7
System.out.println((i - j) + k);

// 8
System.out.println(i - (j + k));

// 9
System.out.println(i + (k * k) + j);

// 10
System.out.println((i + k) * (k + j));

// 11
System.out.println((i + k) * k + j);
Answers SelectShow

When calculating with double and ints make sure to watch out what you are calculating with, because ints are whole numbers and always rounded downwards. Again, guess what the answer will be and figure out why that is.

int result1 = 5 / 2;
System.out.println(result1);

double result2 = 5 / 2;
System.out.println(result2);

double result3 = 5 / 2.0;
System.out.println(result3);

double result4 = 5.0 / 2;
System.out.println(result4);

double result5 = 5 / 2 * 2;
System.out.println(result5);

double result6 = 5 / 2.0 * 2;
System.out.println(result6);
Answers SelectShow

Now you might be wonder what the use of integers are and why not just use doubles for everything. For 1 integers take up less space in your memory and for al lot of calculations double just isnt necessary as you will see in coming Lessons. For now its just important that you know the difference between the two.

Assignment

You have 3 numbers 8, 3, 2 you can choose yourself whether you use them as a double or integer. You can use each number only once and you need to use them all.

Try get the following results:1) 9.0
2) 3
3) 2
4) 12.0
5) 7
6) 1.0
7) 4
8) 5

Answers SelectShow

Download

The examples and the solutions to the Assignment you can download here