返回列表 發帖
  1. #include<iostream>  
  2. #include<cstdlib>   
  3. using namespace std;


  4. int main(){
  5.    
  6.     float x;    //x->長
  7.     float y;    //y->寬
  8.    
  9.     cout<<"輸入長:";
  10.     cin>>x;
  11.     cout<<"輸入寬:";
  12.     cin>>y;
  13.    
  14.     cout<<"長為:"<<x<<"、寬為:"<<y<<"的矩形,面積:"<<x*y<<",周長:"<<(x+y)*2<<endl;
  15.    
  16.     system("pause");   
  17.     return 0;               
  18. }
複製代碼

TOP

返回列表