Board logo

標題: 面積計算 (一) - 三角形 [打印本頁]

作者: 許婷芳    時間: 2019-8-2 17:34     標題: 面積計算 (一) - 三角形

請試著算出三角形的面積
[attach]6935[/attach]
  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. }
複製代碼

作者: 謝以愛    時間: 2019-8-2 19:26

  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. }
複製代碼

作者: 謝以恩    時間: 2019-8-2 19:40

  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.     }
複製代碼

作者: 謝以愛    時間: 2019-8-2 20:00

  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. }
複製代碼

作者: 蘇詠翔    時間: 2019-8-2 20:03

  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. }
複製代碼

作者: 廖文綺    時間: 2019-8-2 20:20

  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. }
複製代碼

作者: 林祐霆    時間: 2019-8-2 20:28

  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. }
複製代碼

作者: 尤爾呈    時間: 2019-8-2 20:37

  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. }
複製代碼

作者: 蘇韋誠    時間: 2019-8-2 20:40

  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. }
複製代碼

作者: 洪承廷    時間: 2019-8-2 20:43

#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;
    }
作者: 廖文綺    時間: 2019-8-9 18:51

  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. }
複製代碼

作者: 廖文綺    時間: 2019-8-14 14:21

  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. }
複製代碼





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