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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int a;
  4. int main()
  5.  {extern int power(int);
  6.   int b=3,c,d,m;
  7.   cout<<"enter an integer a and its power m:"<<endl;
  8.   cin>>a>>m;
  9.   c=a*b;
  10.   cout<<a<<"*"<<b<<"="<<c<<endl;
  11.   d=power(m);
  12.   cout<<a<<"**"<<m<<"="<<d<<endl;
  13.   return 0;
  14.  }