返回列表 發帖
  1. #include<iostream>
  2. #include<cmath>
  3. using namespace std;
  4. int main()
  5. {
  6.     double x, y;
  7.     cout<<"Enter a Base Number: ";
  8.     cin>>x;
  9.     cout<<"Enter an Exponent: ";
  10.     cin>>y;
  11.     cout<<x<<"'s Power of "<<y<<" Is "<<pow(x,y)<<endl;
  12.       
  13. system("pause");
  14. return 0;
  15. }
複製代碼

TOP

返回列表