import java.text.DecimalFormat;
import java.util.Scanner;
public class ACM_1005 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int F = scan.nextInt();
float c = (float) 5 * (F - 32) / 9;
/* 保留小数点后边两位小数的方法(下边的 c 表示要处理的数据)
第一种方法
import java.text.DecimalFormat;
DecimalFormat df = new DecimalFormat("#.00");
String result = df.format(c);
System.out.println(result);
第二种方法
System.out.println(String.format("c=%.2f", c));
*/
System.out.println(String.format("c=%.2f", c));
}
}
03-22
1811
11-11
1万+
07-22
2万+
04-05
409