Printing the division result of two numbers.

 import java.util.*;



public class printDiv{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int div = a / b;
System.out.print("The division of a by b is:" + div);
}
}

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...