Computer Science, asked by BrainlyGod377, 20 days ago

Write a python program using if..else control statement to find a person major or minor

Answers

Answered by akn0102
2

Answer:

age =int(input("Enter Persons age : "))

if age >=18;

print("Person is Major")

else:

print("Person is Minor" )

Explanation:

A  Major Person's age should be 18 or greater then 18, We will use this criteria with the if else Conditional statement in the program.

Similar questions