Created
August 3, 2016 17:01
-
-
Save scottswaaley/4b83a2670025c7cdbf211fb88ab4ad95 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if( age > 55) { | |
Serial.println("You are a Senior Citizen"); | |
} | |
if( age >= 13 && age <= 19) { | |
Serial.println("You are a teenager"); | |
} | |
if( age < 13 || age > 65 ) { | |
Serial.println("Your either too old or too young to be playing with an Arduino"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment