Comparing order(increasing or decreasing) of three numbers

 import java.util.*;


public class IntOrderIDN {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();

if (a>b && b>c) {
System.out.println("No are in decreasing order");
} else if (c>b && b>a ) {

System.out.println("Numbers are in increasing order");
} else {
System.out.println("Neither increasing nor decreasing");
}
}
}

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