Main Page
Modules
Namespaces
Classes
Files
File List
File Members
functions.cpp
Go to the documentation of this file.
1
#include "
functions.h
"
2
3
int
fatorial
(
int
v)
4
{
5
return
(v == 1) ? 1 : v *
fatorial
(v - 1);
6
}
functions.h
fatorial
int fatorial(int v)
Definition:
functions.cpp:3
terralib5_src
examples
core
lib
lib_example
functions.cpp
Generated on Wed Jun 6 2018 12:16:08 for TerraLib by
1.8.11