Board logo

標題: [隨堂測驗] 面積計算 (二) - 三角形 [打印本頁]

作者: 張翼安    時間: 2015-10-3 10:06     標題: [隨堂測驗] 面積計算 (二) - 三角形

面積計算 (二) - 三角形
作者: 張健勳    時間: 2015-10-3 10:56

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

作者: 蔡季樺    時間: 2015-10-3 10:57

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

作者: 蔡庭豪    時間: 2015-10-3 10:59

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

作者: 吳承勳    時間: 2015-10-3 11:01

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

作者: 張文擇    時間: 2015-10-3 11:05

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

作者: 任立宇    時間: 2015-10-3 11:14

#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;
}




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