编写递归函数long fun(int n),在主函数中输入n的值,调用fun函数计算n!的值。 实验要求:(1)使用debug中的 逐语句 追踪到函数内部,观察函数的递归调用过程。 (2)在debug调试中,注意观察堆栈的改变,练习调试方式的使用,学会调试程序。 #include
using namespace std; long fac(int n); int main() { int n; cout << "Enter number: "; cin >> n; while (n < 1 ) { cout << "ERROR,Please Enter:"; cin >> 2 ; } cout << "\n"; cout <<"fac("<
<<")="<< 3 <