Skip to content

Instantly share code, notes, and snippets.

View mohammedragabmohammedborik's full-sized avatar

mohammedragabmohammed mohammedragabmohammedborik

  • egypt
View GitHub Profile
@udacityandroid
udacityandroid / Code snippet in WeatherActivity.java
Last active February 6, 2023 13:44
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.");