Printing the table of a given number

 import java.util.*;


public class Table{
public static void main(String args[]){

Scanner sc = new Scanner(System.in);
System.out.print("Enter the number");
int n = sc.nextInt();
for(int i=1; i<=10; i++){
System.out.println(n+"*"+i+"="+n*i);
}
}
}

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