liangm20

Fahrenheit to Celsius

Sep 12th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. /**
  2. * Converting Fahrenheit to Celsius.
  3. *
  4. * @Michelle
  5. * @9/12/16
  6. */
  7. public class fahrenheittocelsius
  8. {
  9. public static void main (String[] args)
  10. {
  11. double fahrenheit = 29;
  12. double celsius = 5.0/9.0 * (fahrenheit - 32);
  13. System.out.print(fahrenheit + " degrees Fahrenheit is equal to " + celsius + " degrees Celsius.");
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment