
public class Temperature {
	
	double tempf = 70;
	
	public void calculateCelsius() {
		double tempc = (tempf - 32) * 5 /9;
	}
}
