public class 华氏温度转摄氏温度 {
public static void main(String[] args) {
int f;
Scanner in = new Scanner(System.in);
f = in.nextInt();
int c;
c = (f - 32) * 5 / 9;
System.out.println((int)(c));//这里是强制将浮点数转换为整数
}
}
**注:**类名是为了更好的辨别