Skip to content

Instantly share code, notes, and snippets.

@Spikey3
Created February 10, 2012 19:14
Show Gist options
  • Save Spikey3/1791860 to your computer and use it in GitHub Desktop.
Save Spikey3/1791860 to your computer and use it in GitHub Desktop.
import java.util.*;
public class UserInput1 {
public static void main( String args[]) {
Scanner kbReader=new Scanner(System.in);
System.out.print("Put Farenhiet here");
Integer f =kbReader.nextInt();
Integer c = (f-32)*5/9;
System.out.print("Farenhiet = " + f + " Celsius = " + c);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment