Q:

Ruby program to check a person is eligible for voting or not using the ternary operator

belongs to collection: Ruby Basic Programs

0

In this program, we will read the age of the person from the user. Then we will check the person is eligible for voting or not.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to check a person is eligible for voting or not using a ternary operator is given below. The given program is compiled and executed successfully.

# Ruby program to check a person is eligible 
# for voting or not using ternary operator

print "Enter the age of person: ";
age = gets.chomp.to_i;  

msg=age>=18 ? "ELIGIBLE" : "NOT ELIGIBLE"; 

print "Voting eligibility is: ",msg;

Output:

Enter the age of person: 22
Voting eligibility is: ELIGIBLE

Explanation:

In the above program, we read the age of the person from the user and checked the age of the person for voting eligibility using the ternary operator, and printed the appropriate message.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to find the largest number between tw... >>
<< Ruby program to check the given number is POSITIVE...