Board logo

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

作者: tonyh    時間: 2014-8-9 17:06     標題: pow() 函式 - 計算冪次與開根號

本帖最後由 tonyh 於 2014-8-9 17:17 編輯

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

[attach]940[/attach]

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

作者: 張峻瑋    時間: 2014-8-9 17:21

本帖最後由 張峻瑋 於 2014-8-9 17:24 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     double x,y;
  8.     re:
  9.     cout<<"請輸入底數: ";
  10.     cin>>x;
  11.     cout<<"請輸入指數: ";
  12.     cin>>y;
  13.     cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
  14.     goto re;
  15.     system("pause");     
  16.     return 0;
  17. }   
複製代碼

作者: 林宇翔    時間: 2014-8-9 17:21

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

作者: 李允軒    時間: 2014-8-9 17:22

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cmath>

  4. using namespace std;
  5. int main()
  6. {   START:
  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.         goto START;
  15.     return 0;
  16. }
複製代碼

作者: 劉得恩    時間: 2014-8-9 17:23

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;

  5. int main()
  6. {
  7. double x,y;
  8. re:
  9.   cout<<"輸入底數:";
  10. cin>>x;
  11. cout<<"輸入指數:";
  12. cin>>y;
  13. cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
  14. goto re;
  15. return 0;
  16. }
複製代碼

作者: 劉得旗    時間: 2014-8-9 17:23

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     float 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. }
複製代碼

作者: 張彥承    時間: 2014-8-9 17:25

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

作者: 周雍程    時間: 2014-8-9 17:25

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

作者: 張郁庭    時間: 2014-8-15 20:04

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





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