返回列表 發帖

面積計算 (一) - 三角形

本帖最後由 tonyh 於 2016-5-20 11:39 編輯

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

本帖最後由 邱柏揚 於 2016-5-20 11:32 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float a,b;
  7.     cout<<"請輸入三角形的底(公分):";
  8.     cin>>a;
  9.     cout<<"請輸入三角形的高(公分):";
  10.     cin>>b;
  11.     cout<<"底"<<a<<"公分,高"<<b<<"公分的三角形,面積為"<<a*b/2<<"平方公分"<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

本帖最後由 洪為濬 於 2016-5-20 11:53 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    float x,y;
  7.    cout<<"請輸入三角形的高(公分):";  
  8.    cin>>x;
  9.    cout<<"請輸入三角形的底(公分):";
  10.    cin>>y;
  11.    cout<<"高為"<<x<<"公分,底為"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
  12.    
  13.    system("pause");
  14.    return 0;                                         
  15. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. float x,y;
  7. cout<<"請輸入三角形的底(公分):";
  8. cin>>x;
  9. cout<<"請輸入三角形的高(公分):";
  10. cin>>y;
  11. cout<<"底"<<x<<"cm,高"<<y<<"cm的三角形面積為"<<x*y/2<<"平方公分"<<endl;
  12. system("pause");
  13. return 0;      

  14. }
複製代碼

TOP

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

TOP

本帖最後由 劉純妘 於 2016-5-20 11:51 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.      float x,y;
  7.      cout<<"請輸入三角形的底(公分):";
  8.      cin>>x;
  9.      cout<<"請輸入三角形的高(公分):";
  10.      cin>>y;
  11.      cout<<"底",<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;  
  12.      system("pause");
  13.      return 0;
  14. }
複製代碼

TOP

返回列表