└── weather report.java /weather report.java: -------------------------------------------------------------------------------- 1 | import java.io.*; 2 | import java.util.*; 3 | import java.text.*; 4 | import java.math.*; 5 | import java.util.regex.*; 6 | 7 | public class Solution { 8 | 9 | public static void main(String[] args) { 10 | Scanner sc=new Scanner(System.in); 11 | int t=sc.nextInt(); 12 | int v=sc.nextInt(); 13 | double WCF = 35.74 + 0.6215* t + (0.4275* t - 35.75) * Math.pow(v,0.16); 14 | System.out.printf("%.2f%n",WCF); 15 | /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */ 16 | } 17 | } 18 | --------------------------------------------------------------------------------