Write an if/else statement that compares the variable age with 65, adds 1 to the variable seniorCitizens if age is greater than or equal to 65, and adds 1 to the variable nonSeniors otherwise.

LANGUAGE: JAVA

CHALLENGE:

Write an if/else statement that compares the variable age with 65, adds 1 to the variable seniorCitizens if age is greater than or equal to 65, and adds 1 to the variable nonSeniors otherwise.

SOLUTION:


if(age >= 65){
	seniorCitizens = seniorCitizens + 1;
}
else{
	nonSeniors = nonSeniors +1;
}