返回列表 發帖

函式的建立與執行 (一)

本帖最後由 tonyh 於 2016-1-16 11:37 編輯

利用函式自訂的技巧, 建立一個專門計算三角形面積的函式.

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. float tri(float a, float b)
  5. {
  6.     return a*b/2;  
  7. }
  8. int main()
  9. {
  10.     float x,y;
  11.     cout<<"三角形的底(公分): ";
  12.     cin>>x;
  13.     cout<<"三角形的高(公分): ";
  14.     cin>>y;
  15.     cout<<"此三角形的面積為"<<tri(x,y)<<"平方公分!"<<endl;
  16.     system("pause");     
  17.     return 0;   
  18. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. float tri(float,float);
  5. int main()
  6. {
  7.     float x,y;
  8.     cout<<"三角形的底(公分): ";
  9.     cin>>x;
  10.     cout<<"三角形的高(公分): ";
  11.     cin>>y;
  12.     cout<<"此三角形的面積為"<<tri(x,y)<<"平方公分!"<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
  16. float tri(float a, float b)
  17. {
  18.     return a*b/2;  
  19. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void tri()
  5. {
  6.     float x,y;
  7.     cout<<"三角形的底(公分): ";
  8.     cin>>x;
  9.     cout<<"三角形的高(公分): ";
  10.     cin>>y;
  11.     cout<<"此三角形的面積為"<<x*y/2<<"平方公分!"<<endl;   
  12. }
  13. int main()
  14. {
  15.     tri();
  16.     system("pause");     
  17.     return 0;   
  18. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. float tri(float,float);
  5. int main()
  6. {
  7.     float x,y;
  8.     cout<<"三角形的底(公分): ";
  9.     cin>>x;
  10.     cout<<"三角形的高(公分): ";
  11.     cin>>y;
  12.     cout<<"此三角形的面積為"<<tri(x,y)<<"平方公分!"<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
  16. float tri(float a, float b)
  17. {
  18.     return a*b/2;  
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. float tri(float x,float y)
  6. {
  7.     return x*y/2;      
  8. }
  9. int main()
  10. {
  11.     double x,y;
  12.     cout<<"請輸入三角形的底(公分): ";
  13.     cin>>x;
  14.     cout<<"請輸入三角形的高(公分): ";
  15.     cin>>y;
  16.     cout<<"此三角形的面積為"<<tri(x,y)<<"平方公分!"<<endl;
  17.     system("pause");     
  18.     return 0;   
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void tri()
  5. {
  6.     float x,y;
  7.     cout<<"三角形的底(公分): ";
  8.     cin>>x;
  9.     cout<<"三角形的高(公分): ";
  10.     cin>>y;
  11.     cout<<"此三角形的面積為"<<x*y/2<<"平方公分!"<<endl;   
  12. }
  13. int main()
  14. {
  15.     tri();
  16.     system("pause");     
  17.     return 0;   
  18. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

返回列表