java tutorial if statements code example

Example 1: java else if statements

System.out.println("How many sattelites does JUPITER have ??");
		C = scan.nextInt();
		
		if (C == 79)
		{
			System.out.println("Congrats ! You got the Third  Question Right :)");
			points = points + 1;
		}
		
		else if (C != 79)
		{
			System.out.println("Sorry but your answer is wrong :(");
		}

Example 2: java if

if(a<b){
	//if a<b you are here
	//do something
}else if(a==b){
	//if a==b you are here
	//do something
}else{
	//if none above conditions are matched you are here
  	//do something
}

Tags:

Java Example