返回列表 發帖

面積計算 (一) - 三角形

本帖最後由 鄭繼威 於 2022-7-30 15:21 編輯

三角形面積的計算公式如下:
底X高/2
  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. }
複製代碼

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

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

TOP

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

TOP

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

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

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;
  7.     float y;
  8.     cout<<"請輸入三角形的底(公分):" ;
  9.     cin>>x;
  10.     cout<<"請輸入三角形的高(公分):" ;
  11.     cin>>y;
  12.     cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<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, 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,z;
  7.     cout<<"請輸入三角形的底(cm):";
  8.     cin>>x;
  9.     cout<<"請輸入三角形的高(cm):";
  10.     cin>>y;
  11.     cout<<"底為"<<x<<"公分";
  12.     cout<<"底為"<<x<<",高為"<<y<<"的三角形,面積為"<<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,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<<"輸入您的三角形的高與底"<<endl;
  8.     cout<<"底(公分): ";
  9.     cin>>x;
  10.     cout<<"高(公分): ";
  11.     cin>>y;
  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, y;
  7.     cout<<"輸入您的三角形的高與底"<<endl;
  8.     cout<<"底(公分): ";
  9.     cin>>x;
  10.     cout<<"高(公分): ";
  11.     cin>>y;
  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 a,b;
  7. cout<<"請輸入三角形的底(cm)";
  8. cin>>a;
  9. cout<<"請輸入三角形的高(cm)";
  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.     float x, y;
  6.     cout<<"輸入三角形的底(cm):";
  7.     cin>>x;
  8.     cout<<"輸入三角形的高(cm):";
  9.     cin>>y;
  10.     cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

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<<"直徑"<<x<<"公分的圓 周長為"<<x*3.14159<<"平方公分."<<endl;
  10.     cout<<"半徑"<<x/2<<"公分的圓 面積為"<<x*x*3.14159<<"平方公分."<<endl;
  11.    
  12.    
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

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

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. int a,b;
  7. cout<<"請輸入底";
  8. cin>>a;
  9. cout<< "請輸入高";
  10. cin>>b;
  11. cout<<"底="<<a<<",高="<<b<<",面積="<<a*b/2.0<<endl;

  12. return 0;
  13. }
複製代碼

TOP

返回列表