Board logo

標題: 007_矩形計算機 [打印本頁]

作者: 游東祥    時間: 2015-4-18 11:12     標題: 007_矩形計算機

本帖最後由 游東祥 於 2015-4-18 11:35 編輯

宣告兩個變數 w(寬) h(高)分別使用 cin 讓使用者輸入寬高兩個數值並存入 w 與 h 變數
接著算出總邊長與面積,並顯示出來。

  1. 請輸入矩形的高(公分):27
  2. 請輸入矩形的寬(公分):137
  3. =====================
  4. 這個矩形的周長是 328 公分
  5. 這個矩形的面積是 3699 平方公分
複製代碼

本帖隱藏的內容需要回復才可以瀏覽

作者: 王翔    時間: 2015-4-18 11:35

  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;

  4. int main ()
  5. {
  6. re:

  7. int h = 0;

  8. int w = 0;
  9. cout<<"請輸入矩形的高(公分):";
  10. cin>>h;       
  11. cout<<"請輸入矩形的寬(公分):";
  12. cin>>w;
  13. int l = (h + w)*2;
  14.         int m =h *w;



  15. cout<<"====================="<<endl;

  16. cout<<"這個矩形的周長是"<<l<<"公分"<<endl;

  17. cout<<"這個矩形的面積是"<<m<<"平方公分"<<endl;


  18.        
  19.        
  20.        
  21.         goto re;
  22.        
  23.         system ("pause");
  24.         return 0;

  25. }
複製代碼

作者: 吳承勳    時間: 2015-4-18 11:35

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.         int w = 0;
  7.         int h = 0;
  8.         cout << "請輸入矩形的高(公分):";
  9.         cin >> h;
  10.         cout << "請輸入矩形的寬(公分):";
  11.         cin >> w;
  12.        
  13.         int l =( w + h ) * 2;
  14.         int m = w * h;
  15.        
  16.         cout << "=====================" << endl;
  17.         cout << "這個矩形的周長是" << l << "公分" << endl;
  18.         cout << "這個矩形的面積是" << m << "平方公分" << endl;
  19.        
  20.         system("pause");
  21.         return 0;
  22. }
複製代碼

作者: 林廷翰    時間: 2015-4-18 11:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int h = 0;
  7.         int w = 0;
  8.         cout<<"請輸入矩形的高(公分):";
  9.         cin>>h;
  10.         cout<<"請輸入矩形的寬(公分):";
  11.         cin>>w;
  12.         int l = (h+w)*2;
  13.         int m = h*w;
  14.         cout<<"====================="<<endl;
  15.         cout<<"這個矩形的周長是"<<l<<"公分"<<endl;
  16.         cout<<"這個矩形面積的是"<<m<<"平方公分"<<endl;
  17.        
  18.         system("pause");
  19.         return 0;
  20. }
複製代碼

作者: 黃璽安    時間: 2015-4-24 20:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     int w;
  7.         int h;
  8.        
  9.         cout<<"請輸入矩形的高(公分):";
  10.         cin>>w;
  11.     cout<<"請入矩形的寬(公分):";
  12.     cin>>h;
  13.         cout<<"====================="<<endl;
  14.        
  15.         cout<<"這個矩形的周長是 "<<(w+h)*2<<endl;
  16.         cout<<"這個矩形的面積是 "<<w*h<<endl;
  17.        
  18.         system("pause");
  19.         return 0;
  20. }
複製代碼





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