Here you can find the source of CelciusToFahrenheit(int temp)
public static int CelciusToFahrenheit(int temp)
//package com.java2s; public class Main { public static int CelciusToFahrenheit(int temp) { double fahr = temp * 9 / 5 + 32; return (int) fahr; }/*from w ww .jav a 2s .com*/ }