Question
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
import java.util.Scanner;public class ProgramNumber3 {
public static void main(String[] args) {
Scanner scanner; // input stream
double ta; // is the outside temperature measured in degrees Fahrenheit
double v; // the speed measured in miles per hour
double Twc; // the wind-chill temperature
scanner = new Scanner(System.in);
System.out.print("Enter the temperature in Fahrenheit: ");
ta = scanner.nextDouble();...