-
Notifications
You must be signed in to change notification settings - Fork 0
Home
hadesII edited this page Apr 13, 2017
·
1 revision
Welcome to the Study-of-Java wiki! package hello;
import java.util.Scanner;
public class Main {
public static Scanner in;
public static void main(String[] args) {
int C,F;
in = new Scanner(System.in);
System.out.println("请输入摄氏温度:");
F=in.nextInt();
C=(int)((F-32)*(5.0/9));
System.out.println(" 华氏温度为:"+C);
}
}