I have written a Java application that I would like to run inside of a web page. How do I do this?
Code is below:
class Permutations {
static long factorial(int num){
long factorial = 1;
for (int forBlockvar = num; forBlockvar > 1; forBlockvar--) {
factorial = factorial * forBlockvar;
}
return factorial;
}
public static void main(String[] args){
long FactNmR;
int n = 10;
int num = n;
int r = 4;
int nMr = n - r;
long FactN = factorial(num);
if (nMr <= 1){
FactNmR = 1;
}
else {
num = nMr;
FactNmR = factorial(num);
}
long permutations = FactN;
permutations = permutations / FactNmR;
System.out.println(permutations);
}
}