bsc

Comprehensive codebase and cou...
Log | Files | Refs | Activity | README | LICENSE

root / semester_1 / R / Code / R_Code-4.r

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 }
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror