Finding the sum of first n Natural numbers

 import java.util.*;


public class NaturalSum{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int sum=0;
System.out.println("Enter value of n");
int n=sc.nextInt();
for(int i=1; i<=n; i++){
//System.out.println(i);
sum=sum+i;
}
System.out.println("Sum of first"+" "+n+" "+"natural no is = "+sum);
}
}

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