返回列表 發帖

【競賽】題目二:正方形面積計算機

題目二:正方形面積計算機


題目要求:

  • 在畫面上第一行顯示「請輸入正方形的邊長 (公分):」字樣,並停留在第一行等待使用者輸入數字。
  • 輸入數字後,在畫面上第三行顯示面積計算結果如「這個正方形的面積為 15129 平方公分


本帖最後由 鐘彥博 於 2020-1-22 13:57 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.           int a;
  7.        cout<<"請輸入正方形邊長(公分):";
  8.           cin>>a;
  9.           cout<<"        "<<endl;
  10.          cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<endl;
  11.          cout<<"         "<<endl;
  12.      system("pause");
  13.      return 0;
  14. }
複製代碼

TOP

本帖最後由 姚夙葦 於 2020-1-22 14:08 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入正方形邊長(公分):";
  8.     cin>>a;
  9.     cout<<""<<endl;
  10.     cout<<"這個正方形的面積為:"<<a*a<<"平方公分"<<endl;
  11.     cout<<""<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

本帖最後由 龔裕倫 於 2020-1-22 14:00 編輯

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
          int a;
       cout<<"請輸入正方形邊長(公分):";
          cin>>a;
          cout<<"        "<<endl;
         cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<endl;
         cout<<"         "<<endl;
     system("pause");
     return 0;
}

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*x<<"平方公分"<<endl;
  10.     system("pause");
  11.     return 0;
  12. }     
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.           int a;
  7.        cout<<"請輸入正方形邊長(公分):";
  8.           cin>>a;
  9.           cout<<"        "<<endl;
  10.          cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<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. {
  6.   int a;
  7.   
  8.   cout<<"請輸入正方形的邊長 (公分):";
  9.    
  10.   cin>>a;
  11.    cout<<"        "<<endl;
  12.   cout<<"這個正方形的面積為: "<<a*a<<"平方公分"<<endl;
  13.      cout<<"        "<<endl;
  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<<"         "<<endl;
  10.      cout<<"這個正方形的面積為"<<x*x<<"平方公分"<<endl;
  11.      cout<<"         "<<endl;

  12.       system("pause");   
  13.       return 0;   
  14.      
  15. }
複製代碼

TOP

本帖最後由 陳頡鴻 於 2020-1-24 19:18 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入正方形的邊常(公分):";
  8.     cin>> a;
  9.    cout<<endl;
  10.     cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<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. {
  6.   int x;
  7.     cout<<"請輸入正方形的邊長 (公分):";
  8.     cin>>x;
  9.     cout<<"這個正方形的面積為"<<x*x<<"平方公分"<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.           int a;
  7.        cout<<"請輸入正方形邊長(公分):";
  8.           cin>>a;
  9.           cout<<"        "<<endl;
  10.          cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<endl;
  11.          cout<<"         "<<endl;
  12.      system("pause");
  13.      return 0;
  14. }
複製代碼

TOP

返回列表