返回列表 發帖

函式的建立與執行 (一)

本帖最後由 tonyh 於 2019-1-25 10:21 編輯

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

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表