Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class MySlew {
  2.     static void callto(int getthis) {
  3.         int temperature = (((getthis - 32)*5)/9);
  4.         System.out.println(getthis + " = " + temperature);
  5.     }
  6.     public static void main(String[] args) {
  7.         callto(98);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement