I am suppose to make a program that will output a line for a specific age group,but everytime I execute the exe file it gives me the desired line and also the last line included everytime.Where did I go wrong with it including the last line everytime?

#include <iostream>
using namespace std;
int main()
{
double age;
cout<<"Enter your age:";
cin>>age;
if (0<age && age <6)
cout<< "You are considered a young minor. But, in approximately ___ year(s) you will be able to attend school!"<<endl;

else if (6<=age && age<16)
cout<< "In approximately ___ year(s) you will be able to drive!"<<endl;

else if (16<=age && age<21)
cout<< "In approximately ___ year(s) you will be of legal drinking age."<<endl;

else if (21<= age && age<35)
cout<< "You are of legal drinking age. In approximately ___ year(s) you will be able to run for president!"<<endl;

else if (35<= age && age<120)
cout<< "You are old enough to run for U.S. President."<<endl;

else(age >=120);
cout<< "You are too old to run for U.S. President."<<endl;

}