Converting Degree Fahrenheit to Degree Celsius


import java.util.*;
public class FahrenheitToCelsius{
public static void main(String args []){
Scanner sc = new Scanner(System.in);
System.out.println("Enter temperature in Fahrenheit");
double temp = sc.nextDouble();
double celsius = (temp-32)*(int)5/9;
System.out.println("Temperature in Celsius is : "+celsius);
}
}

Google Script for Data Entry Form in Google Spreadsheet

// function to validate the entry made by user in user form function validateEntry (){ // declare a variable and referernece of active goog...