R_Code-4.r (351B)
1 # Write a standard if...else block that checks if a variable named 2 # age is greater than 18. If the condition is true, print "You are eligible to vote.", 3 # otherwise print "You cannot vote.". 4 5 age <- -1 6 if (age < 0) { 7 print("Not a valid age.") 8 } else if (age < 18) { 9 print("Not eligible to vote.") 10 } else { 11 print("Eligible to vote.") 12 }