返回列表 發帖
  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

返回列表