#include<iostream.h> int jiec(int n) { int a; if(n==1||n==0) a=1; else a=jiec(n-1)*n; cout<<a<<endl; return a; } void main() { jiec(4); }