Board logo

標題: pow() 函式 - 計算冪次與開根號 [打印本頁]

作者: tonyh    時間: 2018-7-23 19:49     標題: pow() 函式 - 計算冪次與開根號

利用pow() 函式, 設計一個可以輕鬆計算冪次與開根號的計算機.



  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     double x, y;
  8.     cout<<"請輸入底數: ";
  9.     cin>>x;
  10.     cout<<"請輸入指數: ";
  11.     cin>>y;
  12.     cout<<x<<"的"<<y<<"次方,值為"<<pow(x,y)<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 曾堂桂    時間: 2018-7-23 19:59

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     double a, b;
  8.     cout<<"請輸入底數: ";
  9.     cin>>a;
  10.     cout<<"請輸入指數: ";
  11.     cin>>b;
  12.     cout<<a<<"的"<<b<<"次方,值為"<<pow(a,b)<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 李沛昂    時間: 2018-7-23 20:00

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     double x, y;
  8.     cout<<"請輸入底數: ";
  9.     cin>>x;
  10.     cout<<"請輸入指數: ";
  11.     cin>>y;
  12.     cout<<x<<"的"<<y<<"次方,值為"<<pow(x,y)<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼
嘿嘿
作者: 盧佑芯    時間: 2018-7-23 20:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     double x,y;
  8.     cout<<"請輸入底數:";
  9.     cin>>x;
  10.     cout<<"請輸入次方:";
  11.     cin>>y;
  12.     cout<<x<<"的"<<y<<"次方,值為"<<pow(x,y)<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 黃宇瑄    時間: 2018-7-23 20:03

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     double x, y;
  8.     cout<<"請輸入底數: ";
  9.     cin>>x;
  10.     cout<<"請輸入指數: ";
  11.     cin>>y;
  12.     cout<<x<<"的"<<y<<"次方,值為"<<pow(x,y)<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 黃宇綸    時間: 2018-7-23 20:07

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     double x, y;
  8.     cout<<"請輸入底數: ";
  9.     cin>>x;
  10.     cout<<"請輸入指數: ";
  11.     cin>>y;
  12.     cout<<x<<"的"<<y<<"次方,值為"<<pow(x,y)<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 洪翊庭    時間: 2018-7-30 18:28

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     double x, y;
  8.     cout<<"請輸入底數"<<endl;
  9.     cin>>x
  10.     cout<<"請輸入指數"<<endl;
  11.      cin>>y
  12.       cout<<x<<"的"<<y<<"次方,值為"<<pow(x,y)<<endl;
  13.      system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 洪翊展    時間: 2018-7-30 18:29

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     double x,y;
  8.     cout<<"底數"<<endl;
  9.     cin>>x;
  10.     cout<<"指數"<<endl;
  11.     cin>>y;
  12.     cout<<x<<"的"<<y<<"次方"<<pow(x,y)<<endl;

  13. system("pause");
  14.     return 0;
  15. }      
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2