Computer Science, asked by matjas1000, 6 hours ago

Write an algorithm to Input the age of a child. Check and print whether he/she Is a teen ager or not.​

Answers

Answered by u1903161
0

Answer:

To check whether a person is teenage or not

Explanation:

1. Start

2. Read the age

3. Check the condition,  if( age >= 13 and age <= 19)

      3.1 print the person is teenage

      3.2 else

      3.3 print the person is not teenage

4. End

Answered by Anonymous
0

Answer:

START

INPUT: Age

If (Age>12)

               Then

             PRINT: Is a Teenager

    ELSE

PRINT : Is not a teenager

STOP

Similar questions