返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     float x;
  8.     float y;
  9.     cout<<"enter number and power"<<endl;
  10.     cin>>x>>y;
  11.     cout<<pow(x,y)<<endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼
Attention Seeker </3

TOP

返回列表