返回列表 發帖

[隨堂測驗] 面積計算 (二) - 三角形

面積計算 (二) - 三角形
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y;
  7.     cout<<"請輸入三角形的高: ";
  8.     cin>>x;
  9.     cout<<"請輸入三角形的底: ";
  10.     cin>>y;
  11.     cout<<x<<" 和 "<<y<<" 算出來的三角形面積答案是 "<<x*y*0.5<<endl;
  12.     cout<<"本軟體可能由黑夜影武者研發"<<endl;
  13.     cout<<"感謝使用"<<endl;
  14.     cout<<"請投入100元Thank You"<<endl;                                      
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
        float t,m;
        cout<<"請輸入三角形的底:"<<endl;
        cin>>t;
        cout<<"請輸入三角形的高";
        cin>>m;
        cout<<"底"<<t<<"高"<<m<<",算的面積是"<<t*m/2<<end1;
        system("pause");
    return 0;
}

TOP

返回列表