華氏温度を摂氏温度に変換するプログラム


タイトル内容:
華氏温度を摂氏温度に変換するプログラムを書いて、変換の公式は:
F=(9/5)*C+32
このうちCは摂氏温度、Fは華氏温度を表す.
プログラムの入力は整数で、華氏温度を表します.対応する摂氏温度を出力し、整数でもあります.
ヒント計算結果の浮動小数点数を整数に変換するには、式:(int)x;
ここでxは変換する浮動小数点数である.
入力形式:
整数です.
出力フォーマット:
1つの整数
サンプルを入力:
100
出力サンプル:
37
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		int f;
		f=in.nextInt();
		System.out.println((int)((f-32)/(9.0/5.0)));
	}

}