返回列表 發帖

正方形

本帖最後由 tonyh 於 2013-3-21 20:53 編輯

設計一個小程式, 讓使用者輸入正方形的邊長, 即可計算出正方形面積.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請指定正方形的邊長(公分):";
  8.     cin>>x;
  9.     cout<<"邊長"<<x<<"公分的正方形, 其面積為"
  10.         <<x*x<<"平方公分"<<endl;
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x;
  7.    cout<<"這市一個鄭方形面積計算器:"<<endl;
  8.    
  9.     cout<<"請輸入邊長的值(單位:公分:";
  10.    cin>>x;
  11.    cout<<"請輸入邊的值:";
  12.    cout<<"當正方形邊長的為"<<x<<"公分,他的面積是"<<x*x<<"平方公分"<<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.      int x;
  7.      cout<<"請輸入正方形的邊長: ";
  8.      cin>>x;
  9.      cout<<"邊長"<<x<<"公分的正方形,其面積為"
  10.          <<x*x<<"平方公分"<<endl;  
  11.      
  12.      
  13.     system("pause");         
  14.     return 0;
  15. }         
複製代碼

TOP

返回列表