package creat_java;
import java.util.Scanner;
public class creat1 {
public static void main(String[] args) {
System.out.println(“请输入需要转换的温度;”);
Scanner sca = new Scanner(System.in);
//构造一个Scanner输入对象
int d = sca.nextInt();
char c = sca.next().trim().charAt(0);
//trim()方法去掉字符串开头和结尾的空格,防止不必要的空格导致的错误
//charAt(0)代表着将字符串的第一个字符进行输出
//next() 与 nextLine() 区别
/*
* next():
*
* 1、一定要读取到有效字符后才可以结束输入。
* 2、对输入有效字符之前遇到的空白,next() 方法会自动将其去掉。
* 3、只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。
* 4、next() 不能得到带有空格的字符串。
* nextLine():
* 1、以Enter为结束符,也就是说 nextLine()方法返回的是输入回车之前的所有字符。
* 2、可以输入空格。
*/
if (c == ‘c’ || c == ‘C’) {
double f_temp = 9 * d / 5.0 + 32;
// 对double进行四舍五入转换
int f_temp_int = (int) (f_temp + 0.5);
System.out.println(“您输入的温度值是:” + d + " " + “C”);
System.out.println(“转换后的温度值是:” + f_temp_int + " " + “F”);
//输出流
} else if (c == ‘f’ || c == ‘F’) {
double c_temp = 5 * (d - 32) / 9.0;
// 对double的值进行四舍五入的转换
int c_temp_int = (int) (c_temp + 0.5);
System.out.println(“您输入的温度值是:” + d + " " + “F”);
System.out.println(“转换后的温度值是:” + c_temp_int + " " + “C”);
} else {
System.out.println(“您输入的数值格式是错误,应当输入f与F或者是c与C的格式”);
}
}
}