Skip to content

Instantly share code, notes, and snippets.

@yubrajpokharel
Created January 16, 2023 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yubrajpokharel/fbef9a550b4882263d99d2812f60b635 to your computer and use it in GitHub Desktop.
Save yubrajpokharel/fbef9a550b4882263d99d2812f60b635 to your computer and use it in GitHub Desktop.
if (age < 18) {
System.out.println("You are a minor.");
} else if (age >= 18 && age < 65) {
System.out.println("You are an adult.");
} else {
System.out.println("You are a senior citizen.");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment