xt4-11.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {int f(int);
  5.  int n,s;
  6.  cout<<"input the number n:";
  7.  cin>>n;
  8.  s=f(n);
  9.  cout<<"The result is "<<s<<endl;
  10.  return 0;
  11. int f(int n)
  12.  {;
  13.   if (n==1)
  14.      return 1;
  15.   else
  16.      return (n*n+f(n-1));
  17. }
  18.  
  19.