返回列表 發帖

面積計算 (三) - 矩形

  1. #include<iostream>  //引入輸入輸出函式庫
  2. #include<cstdlib>   //C標準函式庫
  3. using namespace std; //指定命名空間為std

  4. //主程式
  5. int main(){
  6.     //你要做的事
  7.    
  8.     //宣告兩個盒子
  9.     float x;    //x->長
  10.     float y;    //y->寬
  11.    
  12.     cout<<"請輸入矩形的長:";
  13.     cin>>x;
  14.     cout<<"請輸入矩形的寬:";
  15.     cin>>y;
  16.    
  17.     cout<<"長為:"<<x<<"、寬為:"<<y<<"的矩形,面積為:"<<x*y<<",周長為:"<<(x+y)*2<<endl;
  18.    
  19.     system("pause");         //黑色畫面暫停
  20.     return 0;                //告知主程式完成
  21. }
複製代碼
  1. #include<iostream>  //引入輸入輸出函式庫
  2. #include<cstdlib>   //C標準函式庫
  3. using namespace std; //指定命名空間為std
  4. //主程式
  5. int main(){
  6.     //你要做的事
  7.    
  8.     //宣告兩個盒子
  9.     float x;    //x->長
  10.     float y;    //y->寬
  11.    
  12.     cout<<"請輸入矩形的長(公分):";
  13.     cin>>x;
  14.     cout<<"請輸入矩形的寬(公分):";
  15.     cin>>y;
  16.    
  17.     cout<<"長為:"<<x<<"公分、寬為:"<<y<<"公分的矩形,面積為:"<<x*y<<"平方公分,周長為:"<<(x+y)*2<<"公分。"<<endl;
  18.    
  19.     system("pause");         //黑色畫面暫停
  20.     return 0;                //告知主程式完成
  21. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

-泓亦
-佳和

TOP

本帖最後由 吳丞治 於 2022-8-6 15:24 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. //主程式
  5. int main(){
  6.     //你要做的是

  7.     //宣告兩個盒子
  8.     float x;     //x->長
  9.     float y;     //y->寬
  10.    
  11.     cout<<"請輸入矩形的長:";
  12.     cin>>x;
  13.     cout<<"請輸入矩形的寬:";
  14.     cin>>y;
  15.    
  16.         cout<<"長為:"<<x<<"、寬為:"<<y<<"的矩形,面積為:"<<x*y<<",周長為:"<<(x+y)*2<<endl;
  17.    
  18.     system("pause");         //黑色畫面暫停
  19.     return 0;                //告知主程式完成
  20. }   
複製代碼

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.    
  11.     cout<<"長為:"<<y<<",寬為:"<<y<<"的矩形,面積為:"<<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<<"請輸入矩形的長:";
  8.     cin>>x;
  9.     cout<<"請輸入矩形的寬:";
  10.     cin>>y;
  11.       cout<<"長為:"<<x<<","<<"寬為:"<<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.     float x,y;
  6.     cout<<"請輸入矩形的長:";
  7.     cin>>x;
  8.     cout<<"請輸入矩形的寬:";
  9.     cin>>y;
  10.     cout<<"長:"<<x<<"cm, 寬:"<<y<<"cm,"<<"周長為:"<<(x+y)*2<<"cm, 面積為:"<<x*y<<endl;
  11.     cout<<"感謝使用此計算機!"<<endl;
  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<<"輸入矩形的長:";
  7.         cin>>x;
  8.         cout<<"輸入矩形的寬:";
  9.         cin>>y;
  10.         cout<<"長為:"<<x<<"寬為:"<<y<<"的矩形,面積為:"<<x*y<<",周長為"<<(x+y)*2<<endl;
  11.         system("pause");
  12.         return 0;
  13. }
複製代碼

TOP

8

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<<"公分,面積="<<x*y<<"平方公分"<<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 a,b;
  7. cout<<"請輸入矩形的長(cm)";
  8. cin>>a;
  9. cout<<"請輸入矩形的寬(cm)";
  10. cin>>b;
  11. cout<<"長"<<a<<"公分,寬"<<b<<"公分的矩形,周長為"<<(a+b)*2<<",面積為"<<a*b<<"平方公分" ;

  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<<",面積為:"<<x*y<<endl;
  13.    
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

  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

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


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

TOP

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

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

TOP

返回列表