Skip to content

Instantly share code, notes, and snippets.

@udacityandroid
Last active February 6, 2023 13:44
Show Gist options
  • Star 31 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
  • Save udacityandroid/5b1b7da3e1cba07cda69 to your computer and use it in GitHub Desktop.
Save udacityandroid/5b1b7da3e1cba07cda69 to your computer and use it in GitHub Desktop.
Android for Beginners : If/Else Weather Sample Quiz
boolean isRaining = true;
if (isRaining) {
Log.v("WeatherActivity", "It's raining, better bring an umbrella.");
} else {
Log.v("WeatherActivity", "It's unlikely to rain.");
}
Log.v("WeatherActivity", "Thank you for using the WhetherWeather App.");
@mixspark
Copy link

done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment