scu12156247
commented on Oct. 12, 2023, 10:49 a.m.
import java.util.*;
public class h_1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner s = new Scanner(System.in);
double F = s.nextInt();
double C = (F-32)*5/9;
System.out.println(C);
}
Comments
cool
import java.util.Scanner;
public class fyy23 {
}
溫度 >= 90 Summer
90 > 溫度 >= 70 Sprint
70 > 溫度 >= 50 Fall
溫度 < 50 Winter
溫度 > 110 或 溫度 < -5 Invalid
import java.util.*;
public class h_1 {
}