Skip to content

Instantly share code, notes, and snippets.

/derp

Created March 16, 2013 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/5174811 to your computer and use it in GitHub Desktop.
Save anonymous/5174811 to your computer and use it in GitHub Desktop.
static String waterState(double temp)
{
if (temp < 32)
{
return temp.toString("solid");
}
if (temp > 212)
{
}
if (temp < 212 && temp > 32)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment