Java program to take age and tell whether its infant or child or adult


0

Following program shows you how to take age and tell whether its infant or child or adult.
In this program we get age from user, and if the age is less than or equal to 0 it prints invalid input, and if the age is between 1 to 5 it shows infant and if the age is between 6 to 10 it prints child otherwise it prints adult.


Output:

Example1:


Example2:


Example3:


Example4: