Skip to content

Instantly share code, notes, and snippets.

@basepi
Forked from anonymous/derp
Last active December 15, 2015 00:39
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 basepi/5174812 to your computer and use it in GitHub Desktop.
Save basepi/5174812 to your computer and use it in GitHub Desktop.
static String waterState(double temp)
{
if (temp < 32)
{
return "Solid"
}
if (temp > 212)
{
}
if (temp < 212 && temp > 32)
{
}
}
Copy link

ghost commented Nov 5, 2014

not working

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