#include using namespace std; int fattoriale(int n) { int temp; if(n==0) return 1; temp=n; temp=temp*fattoriale(n-1); return temp; } int main() { int n=5; cout<