Printing a number weather it's positive or negative

 import java.util.*;


public class PrintPNNo{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
if(x >0){
System.out.println("The no is positive");
} else if (x<0) {
System.out.println("The no is negative");
} else{
System.out.println("The no is neither negative nor postive");
}

}
}

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