All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javacc-7.0.4.examples.Interpreter.fact.spl Maven / Gradle / Ivy

int n;
int fact;

read n;

fact = 1;

while (n > 1)
{
   fact = fact * n;
   n = n - 1;
}

write fact;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy