Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 28, 2020 05:13
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 parzibyte/1613baf7418595ac7707cae2b743816c to your computer and use it in GitHub Desktop.
Save parzibyte/1613baf7418595ac7707cae2b743816c to your computer and use it in GitHub Desktop.
public static float celsiusAFahrenheit(float celsius) {
return (celsius * 1.8f) + 32;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment