Skip to content

Instantly share code, notes, and snippets.

@ghoti143
Created October 26, 2011 16:28
Show Gist options
  • Save ghoti143/1316905 to your computer and use it in GitHub Desktop.
Save ghoti143/1316905 to your computer and use it in GitHub Desktop.
if (hr < 1 && min < 1)
{
result = "";
}
else if (hr < 1 && min < 2)
{
result = min + " minute";
}
else if (hr < 1)
{
result = min + " minutes";
}
else
{
result = hr + " hour(s) " + min + " minute(s)";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment