好吧,所以我是編程的完全新手,我剛開始使用Java進行編碼。我試圖編寫一個溫度轉換代碼(攝氏溫度到華氏溫度),由於某種原因,它根本不會運行!請幫助我找出此代碼中的錯誤(但可能很愚蠢)。Java中的溫度轉換代碼不會運行?
下面的代碼:
package tempConvert;
import java.util.Scanner;
public class StartCode {
Scanner in = new Scanner(System. in);
public double tempInFarenheit;
public double tempInCelcius;
{
System.out.println("enter the temp in celcius");
tempInCelcius = in .nextDouble();
tempInFarenheit = (9/5) * (tempInCelcius + 32);
System.out.println(tempInFarenheit);
}
}
1)*「出於某種原因,它根本就不會運行!」*'某些原因'通常由編譯器或JRE明確聲明。將來,請複製/粘貼這些消息的文本。 2)這是[標籤:家庭作業]? 3)請爲代碼塊使用一致的邏輯縮進。 4)你顯然還沒有用'9/5'解決問題;) – 2012-04-18 20:19:28
5)'(9/5)*(tempInCelcius + 32)'我也很確定包圍是錯誤的。 – 2012-04-18 20:25:14