Skip to content

Instantly share code, notes, and snippets.

@pepet96
pepet96 / mathproblems
Created October 25, 2013 03:42
Se hacen las operaciones de conversion principalmente
import java.io.*;
public class mathproblems {
public static void main (String [] args) throws IOException {
InputStreamReader inStream = new InputStreamReader(System.in);
BufferedReader systemIn = new BufferedReader(inStream);
String centigrades, fahrenheit;
double fahrenheitanswer, centigradeanswer;