返回列表 發帖

面積計算 (一) - 三角形

請試著算出三角形的面積
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     float x,y;
  7.     cout<<"請輸入三角形的底(公分):"<<endl;
  8.     cin>>x;
  9.     cout<<"請輸入三角形的高(公分):"<<endl;
  10.     cin>>y;
  11.     cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

  4. int main()
  5. {
  6.     int x,y;
  7.     cout<<"請輸入三角形的底(公分):"<<endl;
  8.     cin>>x;
  9.     cout<<"請輸入三角形的高(公分):"<<endl;
  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.     int r,p;
  7.     cout<<"請輸入三角形的底(公分)";
  8.     cin>>r;
  9.     cout<<"請輸入三角形的高(公分)";
  10.     cin>>p;
  11.     cout<<"底為"<<r<<"公分,高為"<<p<<"公分的三角型,面積="<<r*p/2<<"平方公分";
  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<<"請輸入三角形的底(公分):"<<endl;
  8.     cin>>x;
  9.     cout<<"請輸入三角形的高(公分):"<<endl;
  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<<"請輸入三角形的底(公分):"<<endl;
  8.     cin>>x;
  9.     cout<<"請輸入三角形的高(公分):"<<endl;
  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<<"請輸入三角形底(公分):"<<endl;
  8.     cin>>x;
  9.     cout<<"請輸入三角形高(公分):"<<endl;
  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<<"請輸入三角形的底(公分)"<<endl;
  8.     cin>>a;
  9.     cout<<"請輸入三角形的高(公分)"<<endl;
  10.     cin>>b;
  11.     cout<<"三角形的底為"<<a<<"公分,高為"<<b<<"公分,是"<<a*b/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.     int a,b;
  7.     cout<<"請輸入三角形的底(公分):";
  8.     cin>>a;
  9.     cout<<"請輸入三角形的高(公分):";
  10.     cin>>b;
  11.     cout<<"底"<<a<<"公分,高"<<b<<"公分的三角形,面積為"<<a*b/2<<"平方公分";
  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<<"請輸入三角形的底(公分):"<<endl;
  8.     cin>>x;
  9.     cout<<"請輸入三角形的高(公分):"<<endl;
  10.     cin>>y;
  11.     cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

#inciude<iostream>
#inciude<cstdlib>
using namespace std;
int main()
{
    float a,d;
    cout<<"請輸入三角形的高(公分):";
    cin>>d;
    cout<<"請輸入三角形的底(公分):";
    cin>>a;
    cout<<"底"<<d<<"公分,高"<<y<<"公分的三角形,面積為"<<d*y/2<<"平方公分"<<endl;
    system("pause");
    return 0;
    }

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. cout<<"請輸入梯形的上底(公分):"<<endl;



  7. cin>>x;
  8. cout<<"請輸入梯形的下底(公分):"<<endl;
  9. cin>>x;
  10. cout<<"請輸入梯形的高(公分):"<<endl;
  11. cinx>>;
  12. cout<<'上底"<<x<<"公分,寬'<<y<<"公分的梯形,面積"<<*y/2<<"平方公分"<<endl;

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

TOP

返回列表