Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Mohanad0/f0fa6ce7f9077ad1a9668bdea9a5d10a to your computer and use it in GitHub Desktop.

Select an option

Save Mohanad0/f0fa6ce7f9077ad1a9668bdea9a5d10a to your computer and use it in GitHub Desktop.
Android for Beginners : If/Else Email Quiz
int numberOfEmailsInInbox = 0;
String emailMessage = "You have " + numberOfEmailsInInbox + " emails";
if (numberOfEmailsInInbox == 0) {
emailMessage = "You have no new messages";
}
Log.v("InboxActivity", emailMessage);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment