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

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

There is a newer version: 7.0.13
Show newest version
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